public static void main(String[] args) {
Connection conn=null;
PreparedStatement ps=null;
try {
//加载驱动
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
//获取链接
conn=DriverManager.getConnection("jdbc:sqlserver://localhost;database=studb", "sa", "123456");
//添加
//编写sql语句
String sql="insert into stu(id,name,age) values(?,?,?)";
//获取PreparedStatement对象
ps=conn.prepareStatement(sql);
//给?赋值
ps.setInt(1, 6);
ps.setString(2, "小赵");
ps.setInt(3, 19);
//执行,返回值是受影响的行数
int i=ps.executeUpdate();
if(i>0){
System.out.println("添加成功");
}else{
System.out.println("添加失败");
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} finally{
//关闭链接
try {
ps.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
jdbc简单的操作流程(二)添加
最新推荐文章于 2023-10-01 18:17:36 发布