| The database driver. An application should not use this class directly. The
only thing the application needs to do is load the driver. This can be done
using Class.forName. To load the driver and open a database connection, use
the following code:
Class.forName("org.h2.Driver");
Connection conn = DriverManager.getConnection(
"jdbc:h2:˜/test", "sa", "sa");
|