get rid of sql finalizer error messages.

Change-Id: I5613734b78f861237b435079742528b9623c97de
This commit is contained in:
Nick Kralevich
2010-10-11 16:10:04 -07:00
parent 55fe78df44
commit 4a74a38606

View File

@@ -137,6 +137,7 @@ public class TagDBHelper extends SQLiteOpenHelper {
stmt.bindString(1, new String(msg.toByteArray())); // TODO: This should be a blob stmt.bindString(1, new String(msg.toByteArray())); // TODO: This should be a blob
stmt.bindString(2, new Date().toString()); stmt.bindString(2, new Date().toString());
stmt.executeInsert(); stmt.executeInsert();
stmt.close();
} }
@Override @Override