On 07.12.2012 00:19, Joe Mistachkin wrote:

> Could you please try the changes in:
> 
>       http://www.sqlite.org/src/info/c507ca4a8e 
> 
> and then let us know if this clears the issue you are seeing?

Yes, this clears my issues. Many thanks for the quick fix!

Looks like it updates AsyncIO to support SQLITE_IOERR_DELETE_NOENT. I am
surprised that this has not already been noticed since
SQLITE_IOERR_DELETE_NOENT was introduced to os_unix.c in 2012-11-09. It
seems that AsyncIO is indeed rarely used nowadays ...

Two more things I noticed:

1.

ext/async/README.txt spells "superceded" which is apparently a common
misspelling of "superseded". http://en.wiktionary.org/wiki/supercede

2.

ext/async/sqlite3async.h defines these two prototypes without void which
causes my compiler to issue warnings:

  void sqlite3async_shutdown();
  void sqlite3async_run();

This change eliminates the warnings:

  void sqlite3async_shutdown(void);
  void sqlite3async_run(void);

Ralf
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to