Java Database Connectivity: Difference between revisions

Content deleted Content added
m increased coherency of one sentence
Perdian (talk | contribs)
Line 235:
 
public static void main(String[] args) {
try {
Class.forName("com.mysql.jdbc.Driver");
 
Line 246:
System.out.println("Inserted records into the table...");
} catch (Exception e) {
e.printStackTrace();
}
}