User`s guide

SQLite JDBC for Linux
2-169
3
Select OTHER from the Vendor list.
4
Enter the SQLite driver Java class object in the Driver field. Here, use
org.sqlite.JDBC. After entering the driver, if you did not add the JDBC driver
file path to the Java class path, this dialog box displays this message at the bottom.
Address this message by following the steps described in Step 2.
5
Connect to the SQLite database by creating a URL string using the format
jdbc:subprotocol:subname. The jdbc part of this string stays constant for
any JDBC driver. subprotocol is a database type. In this case, subprotocol is
sqlite. The last part of the URL string is subname. For SQLite, this contains the
location of the database. For example, your string is jdbc:sqlite:dbpath, where
dbpath is the full path to your SQLite database on your computer. Enter your string
into the URL field.