Re: [sqlite] fstat warning with SQLite 3.8.1 on Android

2014-01-09 Thread Sascha Sertel
Some analysis shows that the call to fstat fails because the filename being passed into it is null. This seems to be specific to Android as I tried the same code on iOS and it did not produce the same warning message. I feel it is somehow related to the temp file storage on Android, but that is on

Re: [sqlite] fstat warning with SQLite 3.8.1 on Android

2014-01-08 Thread Richard Hipp
On Tue, Jan 7, 2014 at 3:55 PM, Sascha Sertel wrote: > Hello, > > > I'm hoping someone has any ideas what to do about the error messages I'm > getting from SQLite 3.8.1 when run on Android: > > > Getting warning: "cannot fstat db file " > > -- please take note that there is a blank inserted for t

Re: [sqlite] fstat warning with SQLite 3.8.1 on Android

2014-01-08 Thread Sascha Sertel
The error message from my previous email is what we get from the callback added through SQLITE_CONFIG_LOG. The error code is 28, which is SQLITE_WARNING. There are no other errors or any other non-error output from the callback around this. Note that we are setting the temp directory using the dep

Re: [sqlite] fstat warning with SQLite 3.8.1 on Android

2014-01-07 Thread Richard Hipp
Can you turn on warning and error logging to get additional information: http://www.sqlite.org/errlog.html On Tue, Jan 7, 2014 at 3:55 PM, Sascha Sertel wrote: > Hello, > > > I'm hoping someone has any ideas what to do about the error messages I'm > getting from SQLite 3.8.1 when run on And