A、oracle.jdbc.driver.OracleDriver
B、sun.jdbc.odbc.JdbcOdbcDriver
C、com.microsoft.jdbc.sqlserver.SQLServerDriver
D、com.mysql.jdbc.Driver
第1题:
下面是加载JDBC数据库驱动的代码片段: try{ Class.forName("com.mysql.jdbc.Driver"); } catch(ClassNotFoundException e){ out.print(e); } 该程序加载的是哪个驱动?()
A.JDBC-ODBC桥连接驱动
B.部分Java编写本地驱动
C.本地协议纯Java驱动
D.网络纯Java驱动
第2题:
2、下面选项的MySQL数据库URL正确的是哪一个?
A.jdbc:mysql://localhost/company
B.jdbc:mysql://localhost:3306:company
C.jdbc:mysql://localhost:3306/company
D.jdbc:mysql://localhost/3306/company
第3题:
JDBC总体结构中不包括下面哪个组件()?
A.应用程序
B.驱动程序管理器
C.驱动程序
D.视图
第4题:
下面的代码是连接哪个数据库的驱动程序加载片段:() try{ Class.forName(com.mysql.jdbc.Driver );} catch(Exception e){ out.print(e.toString());}
A.Oracle
B.Sql Server
C.Mysql
D.不确定
第5题:
下面选项的MySQL数据库URL正确的是哪一个?
A.jdbc:mysql://localhost/company
B.jdbc:mysql://localhost:3306:company
C.jdbc:mysql://localhost:3306/company
D.jdbc:mysql://localhost/3306/company