On 25 May 2016, at 7:23pm, Michael Hari <[email protected]> wrote:
> What about if we shard the tables in the database across multiple databases? > Is that possible to do? Does SQLite support the concept of sharding? No. Each table has to be entirely contained in a specific database file. You can do things in your software, or create a temporary VIEW which consult all the tables at once (using UNION) but you have to have your software set it up after opening all the database files. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

