1.讀取配置檔案,我將配置資訊寫入配置檔案(.properties)中,方便後期資料庫變更後或者其他專案使用,擴充套件性好些,盡量避免硬編碼.
driver=oracle.jdbc.driver.oracledriver根據key獲取配置檔案方法之前的blog中有寫.url=jdbc:oracle:thin:@127.0.0.1:1521:orcl
username=test
password=test
2.獲取資料庫連線
/**3查詢資料總量* 例項化資料庫連線
* @return
*/private
connection getconnection()
catch
(exception e)
return
conn;
}
private4jdbc讀取pg資料庫intgettotalcount(connection conn, preparedstatement prep)
} catch
(sqlexception e)
finally
catch
(sqlexception e)
rs = null
; }
}return
rownum;
}
driver=org.postgresql.driverurl=jdbc:postgresql://localhost:5432/postgres
username=postgres
password=postgres
querysql=select count(*) from test where id='#'
privateview codeboolean
validatepgexist(string hashvalue) }}
catch
(exception e)
finally
catch
(sqlexception e)
try
catch
(sqlexception e)
try
catch
(sqlexception e)
}return
false
; }
JDBC 運算元據庫
使用jdbc技術連線資料庫的步驟 1.註冊驅動程式 class.forname 資料庫驅動的完整類名 2.獲取乙個資料庫的連線 connection connection drivermanager.getconnection 連線url 使用者名稱 密碼 3.建立乙個會話 statement st...
JDBC運算元據庫
一.步驟 1.載入資料庫驅動 class.forname 驅動全名 2.獲取connection連線 connection con drivermanager.getconnection url 注 資料庫的版本不同url有可能不同。例 mysql 8.0 url jdbc mysql localh...
原始的Jdbc運算元據庫
載入資料庫驅動 class.forname com.mysql.jdbc.driver 通過驅動類連線資料庫 connecttion con drivermanger.getconnection jdbc mysql localhost 3306 資料庫名 使用者名稱 密碼 定義sql語句 stri...