--- Robert Buck <[EMAIL PROTECTED]> wrote: > I am trying to connect to a remote server using the jdbc for sqlite. > However, I am unsure what the jdbc url is supposed to be. The server is > cs.byu.edu. My files are then stored on an f: drive. If I were to use a > regular url, the file I am trying to access would look like this: > http://students.cs.byu.edu/~cs142headta/grades.db Does anyone know how I > would convert this to a jdbc url. I have tried many different things, > however, I always get an out of memory error when I try to access the > database. Any help would be greatly appreciated.
You can't access a database file on a remote machine with sqlitejdbc. SQLite cannot be accessed remotely without writing a client/server wrapper around it. If this remote machine could put the file on a public NFS share, then perhaps the remote machine could access it, but performance would be poor. ____________________________________________________________________________________ It's here! Your new message! Get new email alerts with the free Yahoo! Toolbar. http://tools.search.yahoo.com/toolbar/features/mail/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SQLiteJDBC" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlitejdbc?hl=en -~----------~----~----~----~------~----~------~--~---
