Hello,
Is type4 jdbc driver available for Ms Acess?
I downloaded from here;
http://www.hxtt.com/access.html What should i now do with this folder in order to run ms access in type 4 mode....There are example java files also given there.
2. Code the driver URL (in the part of your code where you connect to the database) according to whatever the driver's documentation says.
That's what you should do with this one, too. In case you didn't find it, the link which says "Document" in the left column leads to some documentation.
If you have specific questions about that process don't hesitate to post them here.
carox kaur
Ranch Hand
Joined: Mar 19, 2009
Posts: 52
posted
0
Thankyou.
The first two lines for jdbc connections are:
class.forName("........<string 1>.........");
Connection con=Driver manager.getConnection("........<string 2>...........");
All i know is that in the first statement: we load the vendor specific Driver class (which varies from vendor to vendor and type of driver to driver) that has the information of the connection class implemented by that database vendor.DriverManager class (implemented by Sun) takes the required information about the connection class from string1 to make the connection object in second line and in 2nd statement: In string2 we are specifying the information of databse like the protocol used,dsn name etc...
Am I right ? is there any other explanation?
One thing I have not understood is how the Driver Manager class knows which driver class is already loaded in the memory? How it creates the connection class object?
James Ward
Ranch Hand
Joined: Apr 27, 2003
Posts: 263
posted
0
AFAIK, there is no type4 jdbc driver for MS Access.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35232
7
posted
0
James Ward wrote:AFAIK, there is no type4 jdbc driver for MS Access.
The link in the first post points to just such a driver.