Tagged Questions
1
vote
1answer
99 views
Why would servicestack ormlite save valid Guid values as NULL to SqLite database?
I am having this problem intermittently with ServiceStack.Net OrmLite on SqLite.
My model class is using a Guid for the primary Id. My code sets a Guid.NewGuid() value to my model before saving, if ...
1
vote
1answer
70 views
servicestack.net ormlite with sqlite - prevent automatic primary key on create table
How do you stop ServiceStack.Net OrmLite from automatically making a primary key column?
My model is as follows:
public class Flower2Bee
{
public int FlowerId { get; set; }
public int ...
0
votes
1answer
62 views
How to create a composite primary key using SQLite Manager
For a project I'm working on one of my SQLite tables requires a composite primary key consisting of two foreign keys. The record retrieval relies on two conditions; a college course and the students ...
1
vote
0answers
81 views
How can I get foreign keys to update correctly in a typed dataset, using SQLite?
I'm working on a SQLite and typed DataSet project in VS 2012. I've defined a simple data model:
[Customers] 1--∞ [Orders] 1--∞ [OrderLines] ∞--1 [Products]
Each table has an Int64 primary key and ...
2
votes
1answer
60 views
why is r/sqlite requiring a primary key?
so i have a table that was created using:
dbGetQuery(conn, "CREATE TABLE Data (DataID integer primary key autoincrement,
DataTypeID integer, DataName varchar)")
after some code, i ...
0
votes
1answer
199 views
GreenDAO - primary key on multiple columns
Does GreenDAO support primary key on multiple columns?
I'm using Property's method primaryKey() on two columns but it doesn't work. I'm getting exception:
Caused by: ...
2
votes
1answer
535 views
Android: Use UUID as primary key in SQLite
My app needs to get synced with other app users (on there own devices). I also want to support offline editing, that are synchronized to the other collaborative users when the user gets connected to ...
0
votes
1answer
72 views
SQLite. Updating value of primary key in specific order
I have the following table:
CREATE TABLE dataTable(
ParentID INTEGER,
MyIndex INTEGER,
// other stuff
PRIMARY KEY (ParentID, MyIndex )
);
Trying to decrease the value of "MyIndex" ...
2
votes
1answer
254 views
No results from SQLite when trying to select by PrimaryKey using sqlite-net
For this example, I've defined the following class, which is saved inside an SQLite database:
[SQLite.AutoIncrement, SQLite.PrimaryKey, SQLite.Indexed]
public int ID { get; set; }
[SQLite.Indexed]
...
-1
votes
1answer
242 views
Android - SQLite Integer Primary Key not being added
EDIT:
I found a solution. Apparently if I put "_id" as the nullColumnHack in db.insert
dbSave.insert(db.getTable(), "_id", values);
then it works. Can anybody explain why?
I have a DB in my ...
1
vote
2answers
271 views
Multi Primary Keys in Android SQLite
In SQLite for Android what is the correct way to add multi primary keys?
Currently I have:
String Create_table = "CREATE TABLE project ( keyId INTEGER PRIMARY KEY, keyName TEXT PRIMARY KEY)";
The ...
1
vote
1answer
125 views
Insert record and keep primary key value
I've got a SQLite database and a table that uses an autoincrementing int as the primary key. I've looked through the documentation and it seems that if I perform an INSERT AND REPLACE, it deletes then ...
-2
votes
1answer
175 views
Insert record then update another table
I'm trying to wrap my head around how to efficiently insert data into a table that doesn't have all the information beforehand.
I have two tables, Table1 and Table2. Table2's primary key is an ...
1
vote
2answers
208 views
How does SQL check if a record exists?
I have a SQLite database and am using the INSERT OR IGNORE query. I have a table with an autoincrementing int as the primary key and also another unique column. My question is, how does SQLite check ...
0
votes
2answers
142 views
SQLIte ROW Limiting
I am trying to limit the number of rows in my SQLite Db to one. I have searched every where for a adequate solution but have not gotten any where. I have received many suggestions ( constraints, ...
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 ...
1
vote
2answers
70 views
In Android, does _id have to be present in any table created?
I am trying to create a table to only has a foreign key, not a primary key. I am getting this error:
java.lang.IllegalArgumentException: column '_id' does not exist
I read a tutorial that the ...
0
votes
1answer
250 views
Primary key select from checklist
i'm workin on app, it has multiple checklist, from which user can select the items, the items are generated from sqlite. Can any one help me how to get the primary keys of the checked items? this is ...
1
vote
1answer
857 views
SQLite create table with UNIQUE combination of columns
I have looked through several sites for any useful documentation and have come up empty. The flow charts from the official site might as well be greek and examples I have attempted from other relevant ...
-3
votes
1answer
102 views
insert method returns 1 two time in Sql Lite android [closed]
In my app i am adding the row in database. But the rowid is coming 1 two time earlier. What could be problem ?
long rowId=getWritableDatabase().insert(TABLE_MEDIA_DETAILS, null, contentValues);
...
0
votes
0answers
30 views
Tell Sqlite not to use certain primary keys
Right now I have a table in a sqlite database with a table that looks like this:
CREATE TABLE IF NOT EXISTS Library (
id INTEGER PRIMARY KEY AUTOINCREMENT,
title TEXT NOT NULL,
artist TEXT NOT NULL,
...
0
votes
1answer
275 views
key is not unique, when updating row on non-key attribute?
I have a really weird problem with a small database.
the table has about 400 entries and the key are two columns which contains two md5 hashes.
my table looks like this:
create table if not exists ...
2
votes
2answers
514 views
SQL Primary key autoincrement vs timestamp
Premesis:
I know that the best way to use a primary key is to set the field as integer (autoincrement or not) due to indexes, but I'm in a particular situation...
I have a program that works offline ...
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 ...
0
votes
2answers
428 views
Android: Using a primary key other than _id in update() and delete()
I have a table with the primary key as xyz_key_id. I want to update a row in the table. An example I found is :
db.update(DB_TABLE, values, "_id=" + rowId, null)
However, I would like to use a ...
0
votes
3answers
95 views
Android SQLite dilemma
I want to increase my integer primary key by 1 for every new entry in a specific table. I read that i could do that by using AUTOINCREMENT. On the other hand i found the note below:
Note that ...
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
189 views
SQLite Primary Key search in multiple tables
I have an SQLite3 database that contains several tables.
All of these tables include a unique INTEGER column named cID set to Primary Key.
There will be an undetermined number of these tables.
Is ...
0
votes
1answer
210 views
sqlite command with multi primarykey?
This is my code:
private static final String CREATE_VISIT_TABLE =
" create table " + VISIT_TABLE +
" (tripdayid integer REFERENCES TripDay(_id)," +
" poiid integer REFERENCES POI(_id)," +
...
0
votes
0answers
241 views
Updating Value of Primary Key throws exception, SQLite
I have SQLite db with more than 50 tables. One of them (parent) has a primary key on varchar field. Many other tables reference to that table... common situation.
I want to change value of primary ...
0
votes
3answers
801 views
What primary key to use in my SQLite database?
I have a .csv file that I turned into an SQLite database with the first column as a date and time (as a TEXT datatype because it's in the format 7/20/2011 12:00:00 PM), the second column as the ...
0
votes
2answers
153 views
Better way of primary key constraint handling?
i have this sqlite table:
CREATE TABLE frames (videomd5 TEXT, framemd5 TEXT, type TEXT, PRIMARY KEY (videomd5, framemd5))
As you can see, the table has a combined PRIMARY KEY because it is allowed ...
4
votes
1answer
3k views
alter table drop column syntax error using sqlite
This is the schema of my table:
create table LPCG(ID integer primary key, PCG text, Desc text, test text);
I wish to drop the column "test", and hence use the command:
alter table LPCG drop column ...
6
votes
1answer
1k views
Android: GUID Primary key
I know if I don't use a field named _id as my primary key in Android, that certain things like the CursorAdapter won't work, but does the _id column need to be an autoincrement int? Could I use a Guid ...
0
votes
1answer
130 views
What's the fastest way to query for a free ID in an SQLite table?
I heard that SQLite has special processing for ID columns and is stored with a special type, "PRIMARY NUMERIC KEY".
So what's the fastest query I can write to fetch a free ID? Assuming that all ID's ...
0
votes
1answer
812 views
Android SQLite3 problem enforcing primary key
I have a listview with a custom adapter that uses an sql cursor. When I add items to my listview, the item will be added to my sqlite3 database and the listview will refresh.
My one problem is that ...
0
votes
1answer
358 views
sqlite - programmatically determine primary key(s)
I need to programatically determine what the primary key field(s) are for a given sqlite table (using sqlite api, not command line).
I can get a list of tables and a list of columns, but only see the ...
3
votes
1answer
2k views
how to get primary key column names for a given table?
All I know is only table name, and id value on which I want to perform query, but I do not know what is id called in that table.
2
votes
1answer
687 views
SQLite - Is it possible to make a non-integer Primary Key work?
Thanks for reading and hopefully answering,
Due to legacy issues and company policy, I am working with SQLite 2.8.17 and have a few varchars as primary keys.
But when I run a *"pragma ...
18
votes
2answers
4k views
Is an index needed for a primary key in SQLite?
When an integer column is marked as a primary key in an SQLite table, should an index be explicitly created for it as well? SQLite does not appear to automatically create an index for a primary key ...
1
vote
2answers
4k views
sqlite: multi-column primary key with an auto increment column
I basically want to convert a table from mysql to sqlite with the following scheme:
create table items (
id integer auto_increment,
version integer default 0,
primary key (id, version)
);
...
0
votes
1answer
163 views
Sqlite: Need to retrieve the automatic primary keys generated for each entry I insert
What's the best way to do this?
Note that this is the sqlite version packaged with Google Gears, also.
3
votes
2answers
265 views
DataMapper import primary key
I'm running an import script which imports a CSV dump of a database into a local sqlite database using DataMapper.
My models look like this:
class Staff
include DataMapper::Resource
...
0
votes
1answer
2k views
Android: Text primary key with different name
I have an existing Windows app for which I'm writing an Android port. The app uses a unique string as the primary key, but the SQLite methods in Android all seem to work with integers and a column ...
9
votes
4answers
11k views
How to retrieve the last autoincremented ID from a SQLite table?
I have a table Messages with columns ID (primary key, autoincrement) and Content (text).
I have a table Users with columns username (primary key, text) and Hash.
A message is sent by one Sender (user) ...
1
vote
2answers
2k views
core data or sqlite or plist files
I have a situation where I need to store the data in local (iphone) and the same data will be in the web server to be accessed by other users (like sending messages) .
For the web server part I am ...
2
votes
2answers
1k views
Primary Key Effect on Performance in SQLite
I have an sqlite database used to store information about backup jobs. Each run, it increases approximately 25mb as a result of adding around 32,000 entries to a particular table.
This table is a ...
0
votes
2answers
3k views
How do I specify a Primary Key in Sqlite
How to define your specified attribute like StudentId in student table as Primary key in sqlite
7
votes
3answers
4k views
Sqlite3: Disabling primary key index while inserting?
I have an Sqlite3 database with a table and a primary key consisting of two integers, and I'm trying to insert lots of data into it (ie. around 1GB or so)
The issue I'm having is that creating ...
