在JAVA action 里写个delete方法怎么弄
1个回答
展开全部
简单点的jdbc,导入jar包,通过jar包里的方法连接
private static int delete(String name) {
Connection conn = getConn();
int i = 0;
String sql = "delete from students where Name='" + name + "'";
PreparedStatement pstmt;
try {
pstmt = (PreparedStatement) conn.prepareStatement(sql);
i = pstmt.executeUpdate();
System.out.println("resutl: " + i);
pstmt.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
return i;
}
实际应用中,jdbc都封装好了,Spring里配置竖宴扒一余昌个数据库模板对象,action里一般都是调用bo类祥告的方法,bo里直接通过该对象直接对数据进行操作。
private static int delete(String name) {
Connection conn = getConn();
int i = 0;
String sql = "delete from students where Name='" + name + "'";
PreparedStatement pstmt;
try {
pstmt = (PreparedStatement) conn.prepareStatement(sql);
i = pstmt.executeUpdate();
System.out.println("resutl: " + i);
pstmt.close();
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
return i;
}
实际应用中,jdbc都封装好了,Spring里配置竖宴扒一余昌个数据库模板对象,action里一般都是调用bo类祥告的方法,bo里直接通过该对象直接对数据进行操作。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询