C++開發(fā)工程師基礎(chǔ)進(jìn)階課程-夯實(shí)C++基礎(chǔ)核心內(nèi)容
2023-08-21 09:51 作者:每天3個(gè)拼課小技巧__ | 我要投稿
? /**
? ? * 獲取連接池對象
? ? * @return
? ? */
? ?public static DataSource getDataSource(){
? ? ? ?return dataSource;
? ?}
? ?/**
? ? * 獲取連接
? ? * @return
? ? */
? ?public static Connection getConnection(){
? ? ? ?try {
? ? ? ? ? ?return dataSource.getConnection();
? ? ? ?} catch (SQLException e) {
? ? ? ? ? ?e.printStackTrace();
? ? ? ? ? ?// 運(yùn)行時(shí)發(fā)生異常再拋出一場
? ? ? ? ? ?throw new RuntimeException(e.getMessage());
? ? ? ?}
? ?}
標(biāo)簽: