Re: [sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-21 Thread Shane Harrelson
Version 3.6.13 fixed some potential alignment issues that could occur on SPARC (and potentially other) architectures. I don't know how you or Apple are testing your app, but if you (or they) are using a device emulator for the testing, the emulator might not be testing alignment conditions the sam

Re: [sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-21 Thread D. Richard Hipp
On Apr 21, 2009, at 11:10 AM, Mark Spiegel wrote: > I'm a bit confused by the following: > > "The assign 100K or so to each database connection's lookaside memory > allocator using sqlite3_db_config(SQLITE_DBCONFIG_LOOKASIDE, ...) > immediately after it is opened." > > If memory is at a premium,

Re: [sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-21 Thread Mark Spiegel
I'm a bit confused by the following: "The assign 100K or so to each database connection's lookaside memory allocator using sqlite3_db_config(SQLITE_DBCONFIG_LOOKASIDE, ...) immediately after it is opened." If memory is at a premium, why would you reserve a large amount of it for SQLite's "look

Re: [sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-20 Thread Jason Boehle
>>> I have written an application for the iPhone called Grocery iQ that >>> uses SQLite.  I don't link to or use the built-in SQLite library on >>> the iPhone.  Instead, I compile the SQLite amalgamation into the >>> executable.  The SQLite version currently being used in our app is >>> 3.6.7. >> >

Re: [sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-20 Thread D. Richard Hipp
On Apr 20, 2009, at 6:09 PM, D. Richard Hipp wrote: > > On Apr 20, 2009, at 5:32 PM, Jason Boehle wrote: > >> I have written an application for the iPhone called Grocery iQ that >> uses SQLite. I don't link to or use the built-in SQLite library on >> the iPhone. Instead, I compile the SQLite am

Re: [sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-20 Thread D. Richard Hipp
On Apr 20, 2009, at 5:32 PM, Jason Boehle wrote: > I have written an application for the iPhone called Grocery iQ that > uses SQLite. I don't link to or use the built-in SQLite library on > the iPhone. Instead, I compile the SQLite amalgamation into the > executable. The SQLite version current

[sqlite] SQLite crashing on iPhone (or so says Apple)

2009-04-20 Thread Jason Boehle
I have written an application for the iPhone called Grocery iQ that uses SQLite.  I don't link to or use the built-in SQLite library on the iPhone.  Instead, I compile the SQLite amalgamation into the executable.  The SQLite version currently being used in our app is 3.6.7. We have been working ha