一 .使用springjdbc運算元據例項
1.編寫druid資料庫連線池工具:
(1)匯入druid包:
(2)建立jdbc.properties資料庫配置檔案
driverclassname=com.mysql.jdbc.driver
url=jdbc:mysql:
//localhost:
3306
/db_tt
username=root
password=root
# 初始化連線數量
initialsize=
5# 最大連線數
maxactive=
10# 最大等待時間
maxwait=
3000
(3)編寫druidjdbcutil工具類:
/**
* druid連線池的工具類
*/public
class
druidjdbcutil
catch
(ioexception e)
catch
(exception e)
}//1.獲取連線
public
static connection getconnection()
throws sqlexception
// 2.獲取連線池方法
public
static datasource getdatasource()
//3.釋放資源
public
static
void
close
(statement stmt,connection conn)
public
static
void
close
(resultset rs , statement stmt, connection conn)
catch
(sqlexception e)}if
(stmt != null)
catch
(sqlexception e)}if
(conn != null)
catch
(sqlexception e)}}
}
2.使用springjdbc運算元據庫:
(1)匯入spring-jdbc包:
(2)編寫springjdbcutil工具類:
public
class
springjdbcutil
}
使用ExecuteNonQuery()運算元據
函式executenonquery 可以對資料庫執行更新,插入,刪除操作,並返回操作影響的行數,若執行語句不是sql語句,則返回 1,應用例項如下 配置檔案資訊 程式 如下 using system using system.data using system.configuration using...
使用DML運算元據
建立學生表 create table student stuid int primary keyauto increment comment 學生編號 stuname varchar 25 comment 學生姓名 stupwd varchar 50 comment 學生密碼 gender char...
使用DML運算元據庫
create table student stuid int primary key auto increment comment 學生編號 stuname varchar 25 comment 學生姓名 stupwd varchar 50 comment 學生密碼 gender char 2 de...