基本的資料庫增刪改查
整理電腦無意間發現了這段程式碼,想起了自己剛入門的時候。發表出來,紀念下。
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
public class DBConn
{
private String url = "jdbc:oracle:thin:@localhost:1521:orcl";
private String cls = "oracle.jdbc.driver.OracleDriver";
private String username = "system";
private String password = "manager";
//三屬性、四方法
//三大核心介面
private Connection conn = null;
private PreparedStatement pstmt = null;
private ResultSet rs = null;
//四方法
/**
* 1 得到資料庫連線
*/
public void getConnection()
{
try
{
Class.forName(cls);
conn = DriverManager.getConnection(url, username, password);
}
catch (ClassNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* 封閉資料庫連線
*/
public void closeConn()
{
if (null != rs)
{
try
{
rs.close();
}
catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (null != pstmt)
{
try
{
pstmt.close();
}
catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
if (null != conn)
{
try
{
conn.close();
}
catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
/**
* 增 刪 改語句
*/
public int execOther(final String strSQL, Object[] params)
{
this.getConnection();
System.out.println(strSQL);
try
{
pstmt = conn.prepareStatement(strSQL);
for (int i = 0; i < params.length; i++)
{
pstmt.setObject(i + 1, params[i]);
}
int affectRows = pstmt.executeUpdate();
return affectRows;
}
catch (SQLException e1)
{
// TODO Auto-generated catch block
e1.printStackTrace();
}
return 0;
}
/**
* 查詢語句
*/
public ResultSet execQuery(final String strSQL, Object[] params)
{
this.getConnection();
System.out.println(strSQL);
try
{
pstmt = conn.prepareStatement(strSQL);
for (int i = 0; i < params.length; i++)
{
pstmt.setObject(i + 1, params[i]);
}
rs = pstmt.executeQuery();
}
catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
return rs;
}
}
mian函式
public static void main(String[] args)
{
DBUtil dbUtil = new DBUtil();
String name = "tom";
String password = "tom";
Object[] params = new Object[] {password};
String strSQL = "select * from person where password=?";
ResultSet rs = dbUtil.execQuery(strSQL, params);
try
{
while (rs.next())
{
System.out.println(rs.getInt(1));
}
}
catch (SQLException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
相關文章
- mysql 資料增刪改查基本語句MySql
- 資料庫操作增刪改查模糊查資料庫
- go——beego的資料庫增刪改查Go資料庫
- mysql基本增刪改查MySql
- mongodb 基本增刪改查MongoDB
- 關於mongodb資料庫的增刪改查MongoDB資料庫
- 搭建頁面:資料庫的增刪改查資料庫
- Flutter資料庫Sqflite之增刪改查Flutter資料庫
- mogoose 建立資料庫並增刪改查Go資料庫
- 資料庫的簡介和MySQL增刪改查資料庫MySql
- mybatis實現MySQL資料庫的增刪改查MyBatisMySql資料庫
- YII1 增、刪、改、查資料庫操作資料庫
- iOS FMDB資料庫之增刪改查使用iOS資料庫
- Python操作SQLServer資料庫增刪改查PythonSQLServer資料庫
- MySQL的基本語法(增,刪,改,查)MySql
- MySql 表資料的增、刪、改、查MySql
- angualrJs對資料庫資料處理的增刪改查JS資料庫
- 基本 SQL 之增刪改查(二)SQL
- MySQL資料庫 ---MySQL表的增刪改查(進階)MySql資料庫
- 用jsp實現資料庫的增刪改查JS資料庫
- mysql資料增刪改查操作MySql
- MongoDB 資料庫建立刪除、表(集合)建立刪除、資料增刪改查MongoDB資料庫
- Golang原生sql操作Mysql資料庫增刪改查GolangMySql資料庫
- 連線資料庫並實現增、刪、改、查資料庫
- FMDB | 實現資料的增刪改查
- jquery基本操作增刪改查有哪些?jQuery
- JavaAPI操作MongoDB--基本增刪改查JavaAPIMongoDB
- Oracle、mysql資料庫增、刪、改OracleMySql資料庫
- 利用Java的API實現HBase資料庫的增刪查改JavaAPI資料庫
- 資料的增刪改
- ORM實操之資料的增刪改查ORM
- Numpy array資料的增、刪、改、查例項
- JSP實現servlet對資料庫的增刪查改操作JSServlet資料庫
- MySQL server的安裝以及增刪改查遠端資料庫MySqlServer資料庫
- linux-MySQL基本指令-增刪改查LinuxMySql
- 增刪改查
- 使用Chatgpt編寫的PHP資料庫pdo操作類(增刪改查)ChatGPTPHP資料庫
- layui的增刪改查UI