What is Type-1 Driver and when this driver is used?
Answer Posted / chandrarekha
JDBC-ODBC driver is called the type 1 driver..it used for
standalone applications only...it is the default driver
therefore not necessary to install the driver like type
2,3,4....and it's not useful for applications over network
and over web...the driver converts the statements/JDBC
calls into opendatabase connectivity calls based on which
the data is retrived from the database
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Which constraint cannot be specified as an explicit constraint and should be specified with the column only ?
What are the types of statements in jdbc?
How to test jdbc connection to sql server?
What is jdbc driver for sql server?
How to insert and delete a row programmatically? (new feature in JDBC 2.0)
What is JDBC Transaction Management and why do we need it?
How can I determine the isolation levels supported by my DBMS?
How can I create a custom RowSetMetaData object from scratch?
Why “no suitable driver” error occurs?
What is a statement?
How can we execute stored procedures?
What is the difference between jdbc and odbc?
What is drivermanager in java?
Is jdbc a web technology?
what is the meaning of following code snippets Class c=class.forName(driverClassName); Driver d=(driver)c.newInstance();