JDBC Slides
JDBC Slides
Prakash Gyamlani
(MCA, DAC, ‘A’ Level)
Senior Software Engineer
AmpliFlex Softwares (P) Ltd
Derby
jdbc:derby://localhost:1527/sample
Pointbase
jdbc:pointbase:server://localhost/sample
– Class.forName(<database-driver>)
try {
// This loads an instance of the Pointbase DB Driver.
// The driver has to be in the classpath.
Class.forName("org.apache.derby.jdbc.ClientDriver")
;
}catch (ClassNotFoundException cnfe){
System.out.println("" + cnfe);
}
Prakash Gyamlani