I am working with a project that is able to transfer databases to various work stations. Right now, I can connect easily to a database that is on the same workstation. Now I would like to connect to a host that is not on the network. I have researched the documentation on the formation of the url..and here is what I found.
url should be something like:
jdbc 
dbc://hostname

ort/subsubname
(assuming that the driver name is odbc)
so that is how I format the url string...but the only problem is that I get an exception:
java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified has occurred during connection
I am not sure what else to try. I have also looked into creating a System DSN to the host. But when looking in the ODBC Data Sources tool, I can't see any way to make a DSN to a host that is not on the server...
Am I forming the url wrong...if so what should it be. If not, what else could be the problem
Thanks
Cardwell