What is Type-1 Driver and when this driver is used?
Answers were Sorted based on User's Feedback
Answer / guest
TYpe -1 Driver is JDBC-ODBC Bridge Driver.
odbc can't be used directly with jdbc,because it uses a c
interface.Moreover odbc make use of pointers which are
totally removed from java.The jdbc-odbc bridge driver
delegates the calls to the datasource.The standard jdk
includes the classes for bridge driver and there is no need
to install any additional classes.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / swetha
jdbc-odbc bridge is called as the type1 driver.It is used
for translates the jdbc call to the odbc call and sends
them to odbc.It allows many different databases.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / 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 |
why we don't use the type 2 driver for connect to the database in jdbc?
Describe the steps needed to execute a sql query using jdbc.
What is the use of callablestatement? Name the method, which is used to prepare a callablestatement.
What is JDBC Batch Processing and what are it’s benefits?
Jdbc-odbc bridge is multi-threaded or not?
What is createstatement method in java?
What is JDBC Connection? Explain steps to get Database connection in a simple java program.
What are different types of JDBC Drivers?
How do I know which jdbc driver to use?
What are the Normalization Rules?
What are the jdbc statements?
How can we retrieve data from the resultset?