vote up 1 vote down star

If I try to insert data with a 20 digit primary key into a SQLite database I get an error with the second insert statement because it "is not unique". If I select the values I can see from the SQLite commandprompt that the primary key is written in scientific notation. The column type is decimal. Is there a way to force SQLite to insert the values "as they are" keeping the precision / "normal representation" even with values that long?

flag

3 Answers

vote up 3 vote down check

insert it as a 'string', not a number.

link|flag
Well, I had to define the column as TEXT and insert the values quoted. I think this is because of SQLite's type-affinity – tobsen Oct 14 '08 at 21:25
Steve, that is so cold. I have to remember that one. – Anders Eurenius Oct 14 '08 at 21:33
vote up 0 vote down

Strange, sounds like your wrapper is putting the number in as a float. I thought DECIMAL was mapped to an integer internally. Using a string would work but may be slow do to the indexing of the string rather than an int.

link|flag
vote up 2 vote down

the primary key field must be an integer, the largest value is 9223372036854775807. use a separate (indexed) field, and insert the value as string.

link|flag
1  
There is no requirement as to the primary key being an integer in SQLite. The rowid is a 64-bit integer, but that's a different matter altogether. The primary key can be any data type you like. See here for details: sqlite.org/autoinc.html – Mihai Limbasan Oct 14 '08 at 20:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.