Hi!
I am using HXTT driver in linux and need to point Access DB in windows file server.
This is what I did.
access.mso.url=jdbc:access://///xx.x.x.xx/AAA/BBB/Data/MSOData.mdb
but I got the follwing error.
java.sql.SQLException: //xx.x.x.xx/AAA/BBB/Data/MSODATA.MDB doesn't exist!
at com.hxtt.global.SQLState.SQLException(Unknown Source)
at com.hxtt.sql.access.l.if(Unknown Source)
at com.hxtt.sql.access.l.(Unknown Source)
I tried dns name instead of IP address, but didn������t work either.
Any idea?
|
>access.mso.url=jdbc:access://///xx.x.x.xx/AAA/BBB/Data/MSOData.mdb
If you're using driver mapping, the correct url should be jdbc:access:////AAA/BBB/Data/MSOData.mdb .
If you're using UNC path, the correct url should be jdbc:access://///adriver$/AAA/BBB/Data/MSOData.mdb .
If you're using server mode, the correct url should be jdbc:access://xx.x.x.xx:8029//AAA/BBB/Data/MSOData.mdb .
You should read http://www.hxtt.com/access/faq.html#remote and http://www.hxtt.com/access/dbadmin.html
|