in reply to How can I connect/access an MS access database from solaris?
Access isn't a database server in the same way that Oracle, MySQL, et al. are. There are no client libraries that connect via socket to an Access server. Access to Access is typically via ODBC or OLE to the JET engine, which is packaged as a set of DLLs. JET manipulates the disk directly.
If you want to get at Access from Solaris, you'll need to set up some sort of proxy server on Win32, and connect to the proxy server from Solaris. Look into DBI's proxy mechanism, DBD::Proxy and DBI::ProxyServer. Using these, you would set up a proxy server on Win32 that would talk to Access via DBD::ODBC, and access that proxy server from Solaris via DBD::Proxy. I've seen such a setup work for access other databases.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How can I connect/access an MS access database from solaris?
by Anonymous Monk on Sep 10, 2002 at 18:26 UTC | |
by hiseldl (Priest) on Sep 10, 2002 at 19:18 UTC | |
by Anonymous Monk on Sep 10, 2002 at 20:14 UTC | |
by hiseldl (Priest) on Sep 10, 2002 at 20:29 UTC | |
by richardX (Pilgrim) on Sep 11, 2002 at 00:15 UTC |