On 3/11/19, Chris Locke <[email protected]> wrote: > Does SQLite keep a count of the number of current open connections to the > database?
No. SQLite can find out if some other connection has the database open in WAL mode, or if some other database has an active transaction, because it needs to know those things. But there is no counter. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

