LOB files are not closed (and lock remains) when closing con
Status: Beta
Brought to you by:
smallsql
How to recreate (with 0.20):
Create a database, and create a table with a LONGVARBINARY column. Insert value. Close connection (but not application). Now the LOB file is still open.
Suggested fix:
add
if (lobs != null) lobs.close();
to Table.close()