JDBC Flashcards

1
Q

Establish Connection

A

Connection conn = DriverManager.getConnection(“url”,”username”,”password”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

New Statement

A

Statement state = new Statement(“Statement”);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

execute multiple statements at a time

A

addBatch()

executeBatch();

How well did you know this?
1
Not at all
2
3
4
5
Perfectly