下列哪个是加载JDBC-SQLServer数据库驱动(连接器)
A. try{ Class.forName("com.mysql.jdbc.Driver");}catch(Exception e){}
B. try{Class.forName("oracle.jdbc.driver.oracleDriver");}catch(Exception e){}
C. try{ Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");}catch(Exception e){}
D. try{ Class.forName("org.apache.derby.jdbc.EmbeddedDriver");}catch(Exception e){}
查看答案
以下应用程序在数据库中删除一条记录。使用Statement对象执行SQL语句。请补充完整缺失的代码。import java.sql.*;public class T30{public static void main(String[] args){String driver = "com.hxtt.sql.access.AccessDriver";String url = "jdbc:Access:///students.accdb";try{【1】 //加载驱动程序Connection con = DriverManager. getConnection(url);Statement smt = con.createStatement();【2】 ("delete from stu_user where kid='1001'");smt.close();con.close();}catch(Exception e){ e.printStackTrace(); }}}
ResultSet对象和数据库连接对象(Connection对象)实现了紧密的绑定,一旦连接对象被关闭,ResultSet对象中的数据立刻消失。
A. 对
B. 错
ResultSet对象一次只能看到一个数据行,使用next()方法移到下一个数据行,next()方法最初的查询位置,即游标位置,位于第一行的前面。
A. 对
B. 错
SQL语句:select * from mess where height>l.6 and height<=l.8是查询mess表中字段(列)height值在1.6和1.8之间的记录(记录的各个列值都要)。
A. 对
B. 错