新手学java连接Access数据库,执行简单的查询,删除,插入,更新这4个操作,删除时有异常,大侠指教 30

我打算删除学号是55这一行,可以删除不了,数据库的内容和运行结果请看图importjava.io.IOException;importjava.sql.*;/***Cre... 我打算删除学号是55这一行,可以删除不了,数据库的内容和运行结果请看图
import java.io.IOException;
import java.sql.*;
/**
* Created by Meng on 14-3-31.
*/
public class AccessDB {
public static void main(String[] args) throws Exception{
Connection con;
Statement stmt;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection ("jdbc:odbc:Student","","");
stmt = con.createStatement();

AccessDB adb = new AccessDB();
// adb.insertRecords(stmt);
adb.getRecords(stmt);
adb.deleteRecords(stmt);
}

public void getRecords(Statement s) {
try {
String sqlstr = "select * from student";
int i = 1;
ResultSet rs =s.executeQuery(sqlstr);
while (rs.next()) {
int num = rs.getInt(1);
String name = rs.getString(2);
int age = rs.getInt(3);
System.out.println("第" + i + "条: " +num + " " + name + " " + age);
i = i + 1;
}
} catch (Exception ex) {
ex.printStackTrace();
}

}

public void insertRecords(Statement s) {
byte[] b = new byte[255];
System.out.println("请输入你要输入的记录,记录的格式为:\"学号 姓名 年龄\"");
try {
System.in.read(b);
} catch (IOException iex) {
iex.printStackTrace();
}
String userInput = new String(b);
userInput = userInput.trim();
String[] ui = userInput.split(" ");
String sqlstr = "insert into student(num, name, age) values('" + Integer.parseInt(ui[0]) + "','" + ui[1] + "', '"
+ Integer.parseInt(ui[2]) +"')";
try {
s.executeQuery(sqlstr);
} catch (Exception ex) {
// ex.printStackTrace();
}
System.out.println("记录已插入,请查看!");
}

public void deleteRecords(Statement s) {
System.out.println("请输入你要删除的记录的学号:");
byte[] b = new byte[255];
try {
System.in.read(b);
} catch (IOException ioex) {
ioex.printStackTrace();
}
String userInput = new String(b);
userInput = userInput.trim();
String[] ui = userInput.split(" ");
for (int i = 0; i < ui.length; i ++) {
String delstr = "delete from student where num = '"+ui[i]+"'";

try {
s.executeQuery(delstr);
} catch (SQLException e) {
e.printStackTrace();
}
}
}

public void updateRecords(Statement s) {

}
}
展开
 我来答
wanglei980823
2014-03-31 · TA获得超过103个赞
知道小有建树答主
回答量:216
采纳率:0%
帮助的人:77万
展开全部
带循环是想干嘛?
for (int i = 0; i < ui.length; i ++) {
String delstr = "delete from student where num = '"+ui[i]+"'";
debug看看串对吗?
更多追问追答
追问
在命令行输入几个要删除的学号,然后用循环依次删除。。。
追答
查查数据库中对应字段的数据类型,长度,再看看你的类型长度
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式