博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 数据库操作类
阅读量:4947 次
发布时间:2019-06-11

本文共 2546 字,大约阅读时间需要 8 分钟。

 

1 import java.sql.Connection; 2 import java.sql.DriverManager; 3 import java.sql.PreparedStatement; 4 import java.sql.ResultSet; 5 import java.sql.SQLException; 6  7 /********** 8  *  9  * @author aq10  * 11  */12 public class DBOper {13     Connection conn = null;14     PreparedStatement pstmt = null;15     ResultSet rs = null;16 17     public Connection getConn(String server, String dbname, String user, String pwd)18             throws ClassNotFoundException, SQLException, InstantiationException, IllegalAccessException {19         String DRIVER = "com.mysql.jdbc.Driver";20         String URL = "jdbc:mysql://" + server + ":3306/" + dbname + "?user=" + user + "&password=" + pwd21                 + "&useUnicode=true&characterEncoding=utf8";22         Class.forName(DRIVER).newInstance();23         conn = DriverManager.getConnection(URL);24         return conn;25     }26 27     public void closeAll() {28         if (rs != null) {29             try {30                 rs.close();31             } catch (SQLException e) {32                 e.printStackTrace();33             }34         }35         if (pstmt != null) {36             try {37                 pstmt.close();38             } catch (SQLException e) {39                 e.printStackTrace();40             }41         }42         if (conn != null) {43             try {44                 conn.close();45             } catch (SQLException e) {46                 e.printStackTrace();47             }48         }49     }50 51     public ResultSet executeQuery(String preparedSql, String[] param) {52         try {53             pstmt = conn.prepareStatement(preparedSql);54             if (param != null) {55                 for (int i = 0; i < param.length; i++) {56                     pstmt.setString(i + 1, param[i]);57                 }58             }59             rs = pstmt.executeQuery();60         } catch (SQLException e) {61             e.printStackTrace();62         }63         return rs;64     }65 66     public int executeUpdate(String preparedSql, String[] param) {67         int num = 0;68         try {69             pstmt = conn.prepareStatement(preparedSql);70             if (param != null) {71                 for (int i = 0; i < param.length; i++) {72                     pstmt.setString(i + 1, param[i]);73                 }74             }75             num = pstmt.executeUpdate();76         } catch (SQLException e) {77             e.printStackTrace();78         }79         return num;80     }81 82 }

 

转载于:https://www.cnblogs.com/A--Q/p/6137525.html

你可能感兴趣的文章
再谈“我是怎么招聘程序员的”(下)
查看>>
VC6.0图像处理2--图像的反色
查看>>
Snoop, 对WPF程序有效的SPY++机制
查看>>
Does not contain a valid host;port authority解决方法
查看>>
JAVA程序猿怎么才干高速查找到学习资料?
查看>>
使用axel下载百度云文件
查看>>
Qt中图像的显示与基本操作
查看>>
详解软件工程之软件测试
查看>>
浙江大学PAT上机题解析之1008. Elevator (20)
查看>>
【软件工程】第一次阅读作业
查看>>
创建链表LinkedList
查看>>
页面底部的回到顶部的按钮实现
查看>>
APIs
查看>>
c# 判断是否为同一周
查看>>
Python函数篇(1)-函数中的形参与实参(已更新)
查看>>
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>