Gerhard Häring wrote: > I need to know if SQLite works at all if the platform doesn't have a > 64-bit integer type. > > I see that SQLite has some #ifdefing like > > #ifdef SQLITE_INT64_TYPE > > that seems to be for the case when the platform does not have the type > natively, but I don't see where this would actually be implemented. > > If SQLite does indeed require the platform to have a native 64-bit > integer type, then I can remove a few untested and silly #ifdef > HAVE_LONG_LONG parts from my own code.
I wonder why nobody bothered to answer. A closer look at the SQLite source code suggests that the #ifdef is useless and SQLite indeed requires the C compiler to support long longs (64 bit integers). -- Gerhard _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users