James Gregurich wrote: > > I need to set up multiple writers to an in-memory datastore. I just > discovered that you can't have more than one connection to an in- > memory store. > > I can give each task its own independent datastore if there is a way I > can merge the contents of each store into a central store. Is there a > way to attach an existing in-memory store to another in-memory store? >
No, you can't do that in SQLite. You can get the same effect by storing a database file on a RAM disk. Now you can have multiple connections and SQLite will manage the locking for you. HTH Dennis Cote _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users