1
vote
1answer
55 views

Relational SQLite on Windows RT

i am using SQLite for Windows Runtime but i dont see any way to define relationships between tables. Is this feature supported in SQLite for WinRT? If not, are there any alternative solutions for ...
0
votes
3answers
44 views

Foreign key constrains in SQLite

I have two very simple tables where one references another: tblBook: _id integer primary key AUTOINCREMENT name text publisher text tblReader: _id integer primary key ...
-2
votes
1answer
64 views

Implementing database from UML

I recently modeled an UML diagram that basically involves associations. Let's say the code is: public class Seller{ private int idSeller; private String name; private String passw; ...
1
vote
1answer
17 views

In sqlite3, is there a foreign_key integrity check?

I'm just teaching myself sqlite and so I was surprised to see my foreign_key constraint not working when I was able to delete a parent entry. I then learned after reading more that the pragma for ...
1
vote
1answer
31 views

SQLITE ON UPDATE Actions

Based on the SQLite foreign key documentation, it should be the way of creating two database, and the field that referencing the parent field will get updated too if the parent field get updated. ...
0
votes
3answers
39 views

Foreign Key Syntax Error Table not being created

My table is not being created because of a FOREIGN KEY syntax error but I cant seem to figure it out. I made sure I created the int first before I called the FK. Here's teh code for my class with the ...
0
votes
1answer
18 views

Sqlite - Insert if Record Exitsts

I know this is a really basic question, but I can't seem to make it work. I have a table that looks like so: TABLE entry ( "eID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "pID" INTEGER, ...
0
votes
1answer
44 views

Creating foreign key on same table SQLite

Recently I started using SQLite (as required for my study) and I came accross a couple of restrictions of SQLite and I was wondering: can't SQLite create foreign keys on the same table? E.g. this is ...
0
votes
0answers
52 views

PRAGMA foreign_keys = ON doesn't take effect?

This is kind of the most annoying thing I've ever worked with. As I understand, when opening a new Query Window, a new connection is created, but in SQLite query window (I'm using Visual Studio ...
0
votes
0answers
44 views

Foreign Key constraint not enforced on SQLite

I'm having some trouble with the FK constraints defined in table Invitation_Has_Users below: CREATE TABLE "main"."Users" ( "id" integer NOT NULL, "name" text NOT NULL, "gender" ...
0
votes
1answer
43 views

Strange foreign key behavior on empty tables in SQLite 3

I have SQLite 3 with the following setup (simplified): create table Location(LocationId integer not null, LocationCode text not null, primary ...
0
votes
3answers
188 views

sqlite3 “foreign key constraint failed”

I've set up two tables: as follows: create table A(id integer not null primary key autoincrement, name text); create table B(id integer not null primary key autoincrement, id2 integer, book text, ...
0
votes
1answer
35 views

Difference between text references and int references in SQLite?

The following statement works: SELECT p._id, last_name, first_name_pref, title, photo_big FROM People p NATURAL JOIN SpecialtyAreas s WHERE specialty_area_1 = (SELECT s._id FROM SpecialtyAreas s ...
1
vote
1answer
78 views

Error when saving ObjectContext after replacing Parent item and linking Child item to it

In my application, the interface allows the user to create and delete entities in an Entity Framework model. All changes are added to the ObjectContext, and saved only when the user selects "Save". ...
0
votes
1answer
42 views

SQLite, PHP PDO: setting foreign_keys ON

Is there way to set SQLite foreign keys ON using PDO SQLite driver options: new PDO('sqlite:...',array(driver options)) or using PDO::setAttribute() method?
0
votes
2answers
50 views

How to use JOIN on database.

(SQLite and C#) I have this little problem. See those 2 tables. 1. is parent, 2. is child I should get "broj_goluba" from parent table to match "par_m" and "par_z" in child table and later just ...
1
vote
1answer
133 views

why foreign key doesn't work in websql..?

i try to use foreign key in my app using web sql.. i test it in chrome.. no error.. but when i test with manual insert to table img (contain FK) i expect to fail.. but insert is still succes.. this ...
2
votes
1answer
173 views

Android sqlite foreign key references multiple row

I have two tables A and B. In table A, it contains two cols, A1,A2 where A1 is primary key In table B, one of the column, let says B2, store an array of value in col A1 I want to reference every ...
1
vote
2answers
1k views

SQLite foreign key examples

I am not an expert in sql / sqlite.. suppose we have two tables: CREATE TABLE child ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, ); CREATE TABLE MyTableB( dog TEXT, FOREIGN ...
1
vote
1answer
50 views

One foreign key in one table for 2 different fields

Is there a way for me to create only one foreign key in one table that refers to 2 different fields in that same table example: table: family ID | bird | bird_mom | bird_dad 1___X_____2_______3 ...
1
vote
1answer
174 views

If I have a foreign key constraint of a table to itself, do I need to be careful when deleting the whole table?

I have a SQLite table that looks like this: CREATE TABLE myTable ( _id integer primary key autoincrement, ... ... /* some useful fields */ ... parent integer, FOREIGN KEY ...
1
vote
1answer
42 views

Obtain Key SQLite Android

I have two tables in which the second table has a foreign key which is defined as table 1's primary key. Under the add operation how can I reference the newly added table 1 key to use as table 2's ...
1
vote
1answer
110 views

SQLITE and foreign key

I am looking at some database tables which are defined like this: This is the first table- CREATE TABLE Point ( Position integer unique not null, Name text not null, ); ...
3
votes
3answers
291 views

Foreign key? :)

I have 3 tables: CREATE TABLE "Names" ( "Name" TEXT(20) NOT NULL, "Gender" TEXT(20) NOT NULL, PRIMARY KEY ("Name", "Gender") ); CREATE TABLE "Snames" ( "Sname" TEXT(20) NOT NULL, PRIMARY KEY ...
1
vote
1answer
153 views

How to find all references of a particular primary key in a sqlite table?

I have set PRAGMA foreign_keys=ON; I'm trying to delete some records in a sqlite3 table and it displays Error: constraint failed sqlite> delete from auth_user where id = 110; Error: constraint ...
4
votes
2answers
170 views

Malfunctioning on deleting from Sqlite database table (Relationship extraordinary behavior)

I havea weird problem in my android application which is related to database relations on foreign keys. The following codes describe my simple database's structure, i have used SQLiteOpenHelper as a ...
1
vote
1answer
661 views

Android SQLite Database Foreign Key Does Not Work

I'm working with the Android SQLite Database and I have two Tables in it. Table CHECKPOINTS defines a foreign key to an attribute in Table TOUR. After storing data to the database the table Tour is ...
1
vote
3answers
764 views

iOS SQLite: How to automatically set foreign key?

My app uses SQLite, and I've sorted out the create table statements. The idea is that table A and B have a one-to-many (or one) relationship, so the foreign key will be in Table B. Now I know about ...
1
vote
1answer
564 views

SQLite foreign key in android/

i am working on Android 2.2 i have created two table and second table have the foreign key as a primary key of first table but at the time of insertion the foreign key column remain blank.. here's ...
1
vote
4answers
364 views

two tables, each with a foreign key referencing the other

I am trying to create a database to store some questions and answers for a quiz I have so far two tables: questions: (Question ID(PK), question string, correct answer ID) answers: (Answer ID(PK), ...
1
vote
1answer
409 views

android SQLite foreign key error

I've been grinding my teeth on the following bug: I am defining a few tables, two of which must share a value "task_id". I am using the following create statement(s) in my code: // SQL Statement to ...
2
votes
1answer
781 views

How to update python-sqlite on mac osx

Python 2.7.3 on Mac OS X Snow Leopard (downloaded from python.org), tells me it is using sqlite 3.6.12 (sqlite3.sqlite_version). However, to use foreign keys, I need at least sqlite 3.6.19. How can I ...
0
votes
1answer
375 views

Rails3 SQLite3 DROP TABLE CASCADE error

I have a project on Rails 3.0.2. Its rather big and working well with MySQL database. But when I try to run it with SQLite database there is an error during migrations: SQLite3::SQLException: near ...
0
votes
2answers
196 views

Split Table in two and link with foreign keys

I'm working on a SQLite Database. The database is already filled, but I want to refactor it. Here is a sample of what I need to do: I currently have one table: CREATE TABLE Cars (ID INTEGER PRIMARY ...
1
vote
1answer
202 views

foreign key constraint not working through program.but working with terminal

I am having foreign key constraint in my table but when i am inserting data using terminal it is working fine but when i doing it in xcode project it is not working what may be the problem. how can i ...
1
vote
1answer
276 views

OperationalError: foreign key mismatch

I have two tables that I'm filling, 'msrun' and 'feature'. 'feature' has a foreign key pointing to the 'msrun_name' column of the 'msrun' table. Inserting in the tables works fine. But when I try to ...
1
vote
2answers
252 views

How can I enforce SQLite foreign keys in python using pysqlite2?

I have a SQLite database. According to this answer you need version 3.6.19+, which I have. I made it using version 3.7.10 of SQLite: >>> from pysqlite2 import dbapi2 as sqlite >>> ...
1
vote
1answer
288 views

SQLite foreign key constraints

I am using Java with SQLiteJDBC. I was struggling to understand why my foreign keys were not acting as constraints, until I read the following: Prior to version 3.6.19, SQLite did not support ...
2
votes
5answers
1k views

How do you enforce foreign key constraints in SQLite through Java?

It appears that SQLite does not enforce foreign keys by default. I'm using sqlitejdbc-v056.jar and I've read that using PRAGMA foreign_keys = ON; will turn on foreign key constraints, and that this ...
1
vote
1answer
398 views

SQLITE foreign key delete not working

I have done PRAGMA foreign_keys=ON; and it's still not working. Tables: tbl_one { user_id integer PRIMARY KEY NOT NULL, description text, FOREIGN KEY (user_id) REFERENCES tbl_two (id) ON ...
0
votes
2answers
494 views

Error on SELECT*FROM statement android SQLite Database

I have a Database With a foreign key I am using the SELECT * FROM statement but I keep getting an error when I try to view the database. SELECT * FROM STATEMENT private final String MY_QUERY = ...
0
votes
0answers
205 views

SQLite Autoincrement for an alias for the ROWID

I'm having problems creating some tables in SQLite - foreign key mismatches. I want to have two tables (Time and Node) with ID auto incremented. In the Node table, I will reference not the auto ...
2
votes
1answer
3k views

Why can't you use SQLite ROWID as a Primary key?

This does not execute: create table TestTable (name text, age integer, primary key (ROWID)) The error message is: 11-23 11:05:05.298: ERROR/Database(31335): Failure 1 (table TestTable has no ...
0
votes
1answer
221 views

Django: creating linked tables with Foreign keys

I have 3 tables in my SQLite database: User, Accounts, Passwords. The id of the Accounts and Passwords is a ForeignKey to User.id. The problem is that an instance of User doesn't have an id until it ...
0
votes
1answer
301 views

Foreign Keys auto increment does not work in sqlite .NET provider

I insert multiple data into a sqlite table and get always the same ID back. But the field Id is configured as PK + autoinc Id. I use this as connection string: public static void ...
2
votes
1answer
264 views

Django / Sqlite3 add a row for model with a foreign key

I'm new to both Django and SQlite3. I have a model (Person), with a foreign key to (Person_Type): class Person(models.Model): name = models.CharField(max_length=500) pers_type = ...
0
votes
1answer
353 views

Android : INSERT with a FOREIGN KEY that corresponds not to a PRIMARY KEY

First, please forgive me for my approximative English. I have 2 tables, one (tb_facture) with a foreign key referencing the second (tb_garage) My problem is that I can't INSERT in the tb_facture ...
0
votes
0answers
55 views

Can I add a SQLAlchemy relation to a set of different tables, depending on the data set?

I'd like to connect tags with different types of data (say posts and pages). I was thinking of a model Tag that would have a relation to another data set, which can be of type Post or Page. class ...
0
votes
1answer
150 views

using column name as foreign key in sqlite

Is there a way to reference "column-names of given table" as foreign key in sqlite? I've tested: create table "test"( test TEXT ); create table "othertest"( othertest TEXT references PRAGMA ...
1
vote
1answer
394 views

enabling SQLite foreignkeys in nhibernate

I've learned that the only way to enable FK constraints in sqlite is to turn on this pragma: PRAGMA foreign_keys = ON; But unfortunately, if I understood correctly, I will have to execute that ...

1 2