[sqlite] SQLITE_CANTOPEN on Android

2016-04-24 Thread Martin Trnovec
> > Regards, > Clemens > ___ > sqlite-users mailing list > sqlite-users at mailinglists.sqlite.org > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users > -- --- Mgr Martin Trnovec Head of development Pipelinersales Inc. R?ntgenova 26, 851 01 Bratislava, Slovakia @: martin.trnovec at pipelinersales.com | www.pipelinersales.com ---

[sqlite] SQLITE_CANTOPEN on Android

2016-04-22 Thread Martin Trnovec
IR" or is there a better way? kr Martin D?a 22.04.2016 o 15:22 Richard Hipp nap?sal(a): > On 4/22/16, Martin Trnovec wrote: >> It seems that the problem is/was that the application can't create >> transient files in the "." directory returned by >> os_u

[sqlite] SQLITE_CANTOPEN on Android

2016-04-22 Thread Martin Trnovec
a 22.04.2016 o 13:09 Richard Hipp nap?sal(a): > On 4/22/16, Martin Trnovec wrote: >> Hello, >> >> we are using sqlite 3.12.1 on Android device and we are tring to copy >> content of the one table into another table using >> >> INSERT OR REPLACE INTO SELECT * F

[sqlite] SQLITE_CANTOPEN on Android

2016-04-22 Thread Martin Trnovec
Hello, we are using sqlite 3.12.1 on Android device and we are tring to copy content of the one table into another table using INSERT OR REPLACE INTO SELECT * FROM This commad will fail on Android with error code SQLITE_CANTOPEN when - has any triggers configured (also empty one like "se

[sqlite] sqlite3 update hook data

2016-04-18 Thread Martin Trnovec
Hi, Do you know if there is a way how to get n-th column of row during sqlite3_update_hook callback ? I saw there are (in experimental version) some functions like sqlite3_preupdate_new that are able to get this information during sqlite3_preupdate_hook but this is not in stable version. A by the