List of usage examples for android.database.sqlite SQLiteConnection close
void close()
From source file:io.requery.android.database.sqlite.SQLiteConnectionPool.java
private void closeConnectionAndLogExceptionsLocked(SQLiteConnection connection) { try {/*from w w w . j a v a2 s. c om*/ connection.close(); // might throw } catch (RuntimeException ex) { Log.e(TAG, "Failed to close connection, its fate is now in the hands " + "of the merciful GC: " + connection, ex); } }