Uses of Class
org.sqlite.Database

Packages that use Database
org.sqlite Provides the JDBC Driver class and the database access classes. 
org.sqlite.event Provides the classes for dealing with events fired by SQLite. 
org.sqlite.jdbc Provides the API for accessing and processing data stored in a SQLite using the JDBC. 
 

Uses of Database in org.sqlite
 

Methods in org.sqlite that return Database
 Database Statement.getDatabase()
          Retrieves the Database object that produced this Statement object.
 

Uses of Database in org.sqlite.event
 

Methods in org.sqlite.event with parameters of type Database
 void CollationNeededHandler.setDatabase(Database db)
          Set the Database object.
WARNING! Do not use this method because it is called internally.
 

Uses of Database in org.sqlite.jdbc
 

Fields in org.sqlite.jdbc declared as Database
protected  Database JdbcStatement.db
          parent Database object.
 

Constructors in org.sqlite.jdbc with parameters of type Database
JdbcConnection(Database db, java.lang.String url)
           
JdbcPreparedStatement(Database db, JdbcConnection conn, java.lang.String sql)
           
JdbcStatement(Database db, java.sql.Connection owner)