加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
SqlConnection.java 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
王永超 提交于 2018-07-17 20:00 . 数据库连接,王建
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class SqlConnection {
private static Connection con = null;
private static Statement stat = null;
private static String url = "jdbc:mysql://localhost:3308/db_diaryms?user=root&&password=root";
public SqlConnection() {
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection(url);
stat = con.createStatement();
} catch (ClassNotFoundException | SQLException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public boolean Select(String select) throws SQLException {// 登陆查询
ResultSet resultSet = stat.executeQuery(select);
resultSet.last();
if (resultSet.getRow() > 0) {
return true;
} else {
return false;
}
}
public ResultSet Select_Return(String select) throws SQLException {
ResultSet resultSet = stat.executeQuery(select);
return resultSet;
}
public void Insert(String insert) throws SQLException {// 插入
stat.executeUpdate(insert);
}
public void Delete(String delete) throws SQLException {// 刪除
stat.execute(delete);
}
public void Update(String update) throws SQLException {
stat.executeUpdate(update);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化