Re: [sqlite] Deserialize a WAL database file

2019-03-04 Thread Rowan Worth
On Fri, 1 Mar 2019 at 18:26, Lloyd wrote: > I have two database files. One in Rollback mode and the other in WAL mode. > I am able to serialize, deserialize and prepare a SQL query against the > rollback database. When I do the same against the WAL database file, the > 'prepare' statement fails

Re: [sqlite] Deserialize a WAL database file

2019-03-01 Thread Lloyd
On Fri, Mar 1, 2019 at 4:09 PM Simon Slavin wrote: > On 1 Mar 2019, at 10:27am, Lloyd wrote: > > > I am able to serialize, deserialize and prepare a SQL query against the > rollback database. When I do the same against the WAL database file, the > 'prepare' statement fails with code '1'. > >

Re: [sqlite] Deserialize a WAL database file

2019-03-01 Thread Simon Slavin
On 1 Mar 2019, at 10:27am, Lloyd wrote: > I am able to serialize, deserialize and prepare a SQL query against the > rollback database. When I do the same against the WAL database file, the > 'prepare' statement fails with code '1'. It's possible that some of the data for the WAL database is

[sqlite] Deserialize a WAL database file

2019-03-01 Thread Lloyd
I have two database files. One in Rollback mode and the other in WAL mode. I am able to serialize, deserialize and prepare a SQL query against the rollback database. When I do the same against the WAL database file, the 'prepare' statement fails with code '1'. Is it not possible to do this on WAL