题目内容

以下应用程序在数据库中删除一条记录。使用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. 错

SQL语句select * from mess where name like ‘%林%’是查询mess表中字段(列)name值包含有“林”的记录(记录的各个列值都要)。

A. 对
B. 错

答案查题题库