Error report for check..

Hi,
I'm looking for software, that i could use in (automated) testing of my SQLite database (loaded locally). So far i didn't find anything except DB Sanity - seemed to be a good solution but as I've noticed probably it doesn't support SQLite, at least i get an error:
I added lib for sqlite, configured.properties file, everything seemed to be ok... Is there any way to force closing cursors?
I'm looking for software, that i could use in (automated) testing of my SQLite database (loaded locally). So far i didn't find anything except DB Sanity - seemed to be a good solution but as I've noticed probably it doesn't support SQLite, at least i get an error:
java.lang.RuntimeException: Error in query: select AttributeEntryId from frm_AttributeEntry where AttributeId = 12
at org.databene.jdbacl.QueryIterator.createSource(QueryIterator.java:57)
at org.databene.jdbacl.QueryIterator.(QueryIterator.java:45)
at org.databene.jdbacl.ArrayResultSetIterator.(ArrayResultSetIterator.java:39)
at org.databene.dbsanity.model.query.DefectQueryCheck.query(DefectQueryCheck.java:63)
at org.databene.dbsanity.model.SanityCheckFile.perform(SanityCheckFile.java:75)
at org.databene.dbsanity.model.SanityCheckFolder.perform(SanityCheckFolder.java:65)
at org.databene.dbsanity.model.SanityCheckFolder.perform(SanityCheckFolder.java:57)
at org.databene.dbsanity.DbSanity.execute(DbSanity.java:249)
at org.databene.dbsanity.DbSanity.main(DbSanity.java:371)
Caused by: java.sql.SQLException: SQLite only supports closing cursors at commit
at org.sqlite.Conn.checkCursor(Conn.java:110)
at org.sqlite.Conn.createStatement(Conn.java:194)
at org.databene.jdbacl.QueryIterator.createSource(QueryIterator.java:51)
... 8 more
I added lib for sqlite, configured.properties file, everything seemed to be ok... Is there any way to force closing cursors?