Quoting Giovanni <[EMAIL PROTECTED]>: > I understand, and if it was my project I would do it like that, but my > user does not want to have to run a server anything on his desk. He > wants to have a DB on a file server and share it across the different > OS's. Is that possible?
Not with RB's built-in, standalone SQLite implementation. You need some form of multiuser locking for this to be possible. Since you're looking to store the datatables on a fileserver, what if the DB engine was running there? What is the server running for an OS? Tim -- Tim Jones [EMAIL PROTECTED] > > Tim Jones wrote: > > Quoting Giovanni <[EMAIL PROTECTED]>: > > > > > >> Any solutions or workaround? > >> > > > > Use a real multiuser DB engine - Valentina, MySQL, Postgres, etc. > > > > Tim > > -- > > Tim Jones > > [EMAIL PROTECTED] > > > > _______________________________________________ > > Unsubscribe or switch delivery mode: > > <http://www.realsoftware.com/support/listmanager/> > > > > Search the archives of this list here: > > <http://support.realsoftware.com/listarchives/lists.html> > > > > > _______________________________________________ > Unsubscribe or switch delivery mode: > <http://www.realsoftware.com/support/listmanager/> > > Search the archives of this list here: > <http://support.realsoftware.com/listarchives/lists.html> > _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
