On 3 Oct 2015, at 12:19am, Jim Morris <jimm at bearriver.com> wrote:

> I'm using an archaic version, I know, but busy_timeout doesn't seem to work.  
> It doesn't return the value I set.  When was it added?
> 
> sqlite3 temp.db
> SQLite version 3.5.9
> Enter ".help" for instructions
> sqlite> PRAGMA busy_timeout=30000;
> sqlite> PRAGMA busy_timeout;
> sqlite>

Don't know when, but it seems to have been fixed since the version you had:

SQLite version 3.8.10.2 2015-05-20 18:17:19
Enter ".help" for usage hints.
sqlite> PRAGMA busy_timeout;
0
sqlite> PRAGMA busy_timeout=30000;
30000
sqlite> PRAGMA busy_timeout;
30000
sqlite> 

Simon.

Reply via email to