Hi, I'm trying to use the SQLite database in an embedded system that does not have 64-bit integers, i.e. long long, which is used in SQLite. I've managed to compile by definining the 64-bit types to 32-bit types:
typedef long int sqlite_int64; #define UINT64_TYPE unsigned long int I've also run some simple tests and it seems to work. However, I'm a bit worried that this might lead me into problems down the road. Has anyone tried to do this before? What kind of problems might I run into? Regards, /Mattias