随笔 - 67,  文章 - 0,  评论 - 0,  阅读 - 11815
package zuoye;

import java.sql.Connection;
import java.sql.PreparedStatement;

public class text1 {
public static void main(String[] args) {
Connection conn=null;
PreparedStatement pre =null;
try {
conn=zuoye.getConnection();
String s="update emp set ename='sdfaa' where id=1017";
pre = conn.prepareStatement(s);
int i = pre.executeUpdate(s);
if(i>0){
System.out.println("修改成功");
}else{
System.out.println("修改失败");
}
} catch (Exception e) {
e.printStackTrace();
}finally {
zuoye.a(conn,pre);
}
}
}
posted on   ~王~  阅读(298)  评论(0编辑  收藏  举报
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

点击右上角即可分享
微信分享提示