on what basis did we choose the driverID to be equal to 22

i am using a microsoft access driver in my jdbc connection

how did we choose "22"for the driverID

below is the string path of the database

String url = accessDBURLPrefix + filename + accessDBURLSuffix;

String accessDBURLPrefix="jdbc:odbc:Driver={MicrosoftAccessDriver(*.mdb)};DBQ=";

String accessDBURLSuffix = ";DriverID=22;READONLY=false}";

String filename = "C:\\ base_de_donnees.mdb";

thnx

[457 byte] By [myriam.neaa] at [2007-11-27 10:17:37]
# 1

The "we" in that sentence doesn't include me, because I didn't choose that. Therefore it must only include you. So... why did you choose that?

DrClapa at 2007-7-28 15:52:46 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2

DriverID identifies the specific version of the driver to use, corresponding to the version of the application that you're exchanging data with.

http://www.learnasp.com/listserv/archives/dsnless.asp

dcmintera at 2007-7-28 15:52:46 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...