That worked like a charm, thank you! I'm not sure whether this was an oversight or intentional, but I didn't find this particular compile-time option in the SQLite docs: http://www.sqlite.org/compile.html. But this is kind of a strange case, so I can see why you may have intended to leave this as an undocumented option.
~Mike On Tue, Oct 22, 2013 at 9:17 AM, Richard Hipp <[email protected]> wrote: > On Tue, Oct 22, 2013 at 11:47 AM, Michael Foss <[email protected]> > wrote: > > > Hello, > > > > The processor where I am running my instance of SQLite has a problem in > > that it serializes double-precision floating point values incorrectly. If > > the 8-byte double should be stored as 0x123456789ABCDEF0, it is instead > > stored as 0x9ABCDEF012345678. Four-byte floating point values are stored > > correctly. > > > > Recompile SQLite with the SQLITE_MIXED_ENDIAN_64BIT_FLOAT compile-time > option and all will be well. > > -- > D. Richard Hipp > [email protected] > _______________________________________________ > sqlite-users mailing list > [email protected] > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users > _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

