PDC > JDBC > Flashcards
Establish Connection
Connection conn = DriverManager.getConnection(“url”,”username”,”password”)
New Statement
Statement state = new Statement(“Statement”);
execute multiple statements at a time
addBatch()
executeBatch();