Understanding the Kanji 0.1.5
A tool for understanding the meaning behind the Japanese Kanji characters.
|
Defines an object wrapper for a SQLite database connection. More...
Public Member Functions | |
DatabaseConnection (String m_dbConnectionString) | |
Initializes a new instance of DatabaseConnection. | |
Public Attributes | |
Connection | ActiveConnection |
The connection object associated with the instance of DatabaseConnection. | |
Protected Member Functions | |
void | finalize () |
Method called by the Java garbage collector before the object is destroyed. | |
Protected Attributes | |
String | dbConnectionString |
The JDBC connection string that corresponds to the database. | |
String | activeQuery |
The currently active query string used to generate the ActiveResultSet. | |
Defines an object wrapper for a SQLite database connection.
|
protected |
Method called by the Java garbage collector before the object is destroyed.
Although this method is not needed in most java programming, it is needed here to ensure that the database connections are closed before the program exists.
Reimplemented in net.samuelcmace.utk.logic.DatabaseReadConnection, and net.samuelcmace.utk.logic.DatabaseWriteConnection.