pamorale wrote:
> I'd like to know if i can have a db created by Visual basic in memory,
> and then used by Java, and then by VB again...
> I want to avoid disk usage to improve performance.

Not that I know of. To make two connections, you need to be using
SQLite on a file. With a unix machine, you could load the file on a
ramdisk to avoid disk usage, but given you're stuck with VB6, I doubt
this is an option.

Just use a file. If performance is really critical, then you're
probably trying to use SQLite as an IPC mechanism. Probably the best
bet for IPC with something as kludgy as VB6 is a TCP socket.

d.

--~--~---------~--~----~------------~-------~--~----~
Mailing List: http://groups.google.com/group/sqlitejdbc?hl=en
To unsubscribe, send email to [EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---

Reply via email to