key « sqlite « Java Database Q&A





1. How to enforce foreign keys using Xerial SQLite JDBC?    stackoverflow.com

According to their release notes, the Xerial SQLite JDBC driver supports foreign keys since version 3.6.20.1. I have tried some time now to get a foreign key constraint to ...

2. Sqlite JDBC driver not supporting RETURN_GENERATED_KEYS    stackoverflow.com

I am using Xerial latest jdbc driver for sqlite (version 3.7.2) It does not seem to have support for Statement RETURN_GENERATED_KEYS. I keep getting "not implemented by SQLite JDBC driver" in ...

3. Problems with foreign keys on delete    stackoverflow.com

I've two tables that has defined as below; From user table, hospitalId and poliklinikId both references table relhospol, and if any row is deleted from relhospol, (if any user is related ...

4. SQLite foreign key problems    stackoverflow.com

I've two tables that has defined as below; When i delete row from RELHOSPOL from the SQL Manager with executing a DELETE command, it nulls the necessary rows at the USER ...

5. Inserting two different tuples into a table with the same primary key in sqlite    stackoverflow.com

The title says it all, I'm trying to insert in the following table ABC(user text, num int), Where user is primary key two tuples:

(aaa, 1)
(aaa, 2)
What is the result of ...

6. Allowing users to enter keys for blowfish encryption    stackoverflow.com

I am writing a sqlite database that will encrypt messages using blowfish. However in order to use it effectively the user has to be able to enter the key for the ...