On Jul 25, 2008, at 11:50 AM, Dave Gierok wrote: > Does anyone know what endianness a Sqlite database is stored in? Or > does that depend on the endianness of the machine it was created > on? I am wondering because we ship a game that runs on Xbox 360, > which uses the PowerPC architecture and has a different endianness > than the PC. We run PC tools to create our database for the game. > I wonder if we are paying a performance overhead on the Xbox if the > database essentially needs to be 'converted' runtime.
SQLite3 database files are always bigendian, regardless of what processor is being used. The database files are cross-platform between PPC and x86. D. Richard Hipp [EMAIL PROTECTED] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

