On Thu, 2005-03-31 at 13:59 -0600, William Hachfeld wrote: > Does anyone have an idea how I can store a 64-bit unsigned integer > in an SQLite column and still perform useful arithmetic and conditional > operators on them?
If you can restrict yourself to comparison operations, then you could store the numbers as text in the %016x format. -- D. Richard Hipp <[EMAIL PROTECTED]>