This code causes crashes:
ResultSet rs = statement.executeQuery("select count(*) from _table");
ResultSetMetaData meta = rs.getMetaData();
meta.isNullable(1);
Reason:
In Java_org_sqlite_NativeDB_column_1metadatacall:
zTableName = sqlite3_column_table_name(dbstmt, i);
may return NULL which is passed to sqlite3_table_column_metadata
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"SQLiteJDBC" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sqlitejdbc?hl=en
-~----------~----~----~----~------~----~------~--~---