下载此文档

对数据库操作的案例.docx


文档分类:IT计算机 | 页数:约4页 举报非法文档有奖
1/4
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/4 下载此文档
文档列表 文档介绍
import ;
import ;
import ;
import ;
import ;
public class SqlOperate {
//增加
public static boolean add(Nobel no){
PreparedStatement pstmt = null;
int x = 0;
Connection conn = ();
String sql = "insert into nobel (id,author,subject,works,ttime,country) values (?,?,?,?,?,?)";
try {
pstmt = (sql);
(1, ());
(2, ());
(3, ());
(4, ());
(5, ());
(6, ());
x = ();
} catch (SQLException e) {
();
} finally{
try {
if(pstmt!=null)
();
if(conn!=null)
();
} catch (SQLException e) {
();
}
}
if(x==1){
return true;
}else {
return false;
}
}
//删除
public static boolean del(int id){
Statement stmt = null;
int x = 0;
Connection conn = ();
String sql = "delete from nobel where id="+id;
try {
stmt = ();
x = (sql);
} catch (SQLException e) {
();
} finally{
try {
if(stmt!=null)
();
if(conn!=null)
();
} catch (SQLException e) {

对数据库操作的案例 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数4
  • 收藏数0 收藏
  • 顶次数0
  • 上传人yunde113
  • 文件大小0 KB
  • 时间2015-06-21
最近更新