下列哪个是错误的?A.程序使用PreparedStatement对象不仅减轻了数据库的负担,而且也提高了访问数据库的速度。B.连接对象调用prepareStatement(Stringsql)方法对参数sql指定的SQL语句进行预编译处理,并返回一个PreparedStatement对象。C.结果集rs执行rs.getString(1)按字符串返回结果集当前行第1列的值。D."jdbc:mysql://localhost:3306/students?useSSL=true"中的"mysql"是用户数据库的名字。
A. 选项A
B. 选项B
C. 选项C
D. 选项D
查看答案
下列哪个是错误的?A.程序使用PreparedStatement对象会加重数据库的负担。B.连接对象调用prepareStatement(Stringsql)方法对参数sql指定的SQL语句进行预编译处理,并返回一个PreparedStatement对象。C.结果集rs执行rs.getString(1)按字符串返回结果集当前行第1列的值。D."jdbc:mysql://localhost:3306/students?useSSL=true"中的"students"是用户数据库的名字。
A. 选项A
B. 选项B
C. 选项C
D. 选项D
下列ABCD注释标注的哪行代码有错误?importjava.sql.*;publicclassE{publicstaticvoidmain(Stringargs[]){Connectioncon=null;//AStatementsql;//BResultSetrs;//CClass.forName("com.mysql.jdbc.Driver");//D}}
A. 选项A
B. 选项B
C. 选项C
D. 选项D
下列ABCD注释标注的哪行代码有错误?importjava.sql.*;publicclassE{publicstaticvoidmain(Stringargs[]){Connectioncon=null;Statementsql;ResultSetrs;try{Class.forName("com.mysql.jdbc.Driver");//A}catch(Exceptione){}Stringuri="jdbc:mysql://localhost:3306/students?useSSL=true";//BStringuser="root";Stringpassword="";try{con=DriverManager.getConnection(uri,user,password);//C}catch(SQLExceptione){}sql=con.createStatement();//D}}
A. 选项A
B. 选项B
C. 选项C
D. 选项D
列哪个是正确的?(多选)A.在MySQL安装目录的bin子目录下键入mysqld或mysqld-nt启动MySQL数据库服务器。B.在MySQL安装目录的bin子目录下键入mysql启动MySQL数据库服务器。C.MySQL服务器默认占用的端口是3306。D.MySQL服务器的默认用户是root,密码为空(没有密码)。
A. 选项A
B. 选项B
C. 选项C
D. 选项D