On Mon, 13 Feb 2017 15:32:00 +0000 jose isaias cabrera <[email protected]> wrote:
> I have a bunch of records to check, and I am wondering which is a > faster check. I am attaching a network DB as client, > > ATTACH 'h:\bkup\test.db' AS client; If you're concerned about speed or reliability, it would be far, far faster to use locally attached storage. Any difference in how comparisons are expressed will be dwarfed by that choice. If you want many clients to share the database from different hosts, SQLite is not the right tool for that job. Definitely not fastest, and also vulnerable to data corruption. --jkl _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

