日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

h2数据库学习----h2数据库基本使用

發布時間:2023/12/29 数据库 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 h2数据库学习----h2数据库基本使用 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

依賴

<dependency><groupId>org.glassfish.hk2</groupId><artifactId>hk2</artifactId><version>3.0.3</version></dependency>

注:內置了JDBC

連接數據庫

public static final String DRIVER_CLASS = "org.h2.Driver";public static final String JDBC_URL = "jdbc:h2:D:/log/h2";public static final String USER = "root";public static final String PASSWORD = "root";Class.forName(DRIVER_CLASS);Connection connection = DriverManager.getConnection(JDBC_URL, USER, PASSWORD);

執行基本操作

public static final String DRIVER_CLASS = "org.h2.Driver";public static final String JDBC_URL = "jdbc:h2:D:/log/h2";public static final String USER = "root";public static final String PASSWORD = "root";public void simpleCase() {try {log.info("start");Class.forName(DRIVER_CLASS);Connection connection = DriverManager.getConnection(JDBC_URL, USER, PASSWORD);Statement statement = connection.createStatement();statement.execute("drop table if exists user_info");statement.execute("create table user_info(id integer primary key, name VARCHAR(100), SEX varchar(2))");statement.executeUpdate("insert into user_info values(1,'jsq','女')");statement.executeUpdate("insert into user_info values(2,'ad','女')");statement.executeUpdate("insert into user_info values(3,'sddf','男')");statement.executeUpdate("insert into user_info values(4,'sfrfe','男')");ResultSet resultSet = statement.executeQuery("select * from user_info");while (resultSet.next()) {log.info("id is {}, name is {}, sex is {}", resultSet.getInt("id"), resultSet.getString("name"), resultSet.getString("sex"));}statement.close();connection.close();} catch (ClassNotFoundException | SQLException e) {log.info("have a exception, which is {}", e.getMessage());}}

創建數據庫連接池

public static final String DRIVER_CLASS = "org.h2.Driver";public static final String JDBC_URL = "jdbc:h2:D:/log/h2";public static final String USER = "root";public static final String PASSWORD = "root";Class.forName(DRIVER_CLASS);JdbcConnectionPool pool = JdbcConnectionPool.create(JDBC_URL, USER, PASSWORD);Connection connection = pool.getConnection();

數據庫連接池執行SQL語句

public static final String DRIVER_CLASS = "org.h2.Driver";public static final String JDBC_URL = "jdbc:h2:D:/log/h2";public static final String USER = "root";public static final String PASSWORD = "root";public void useConnectionPool() {try {log.info("start");Class.forName(DRIVER_CLASS);JdbcConnectionPool pool = JdbcConnectionPool.create(JDBC_URL, USER, PASSWORD);Connection connection = pool.getConnection();Statement statement = connection.createStatement();statement.execute("drop table if exists user_info");statement.execute("create table user_info(id integer primary key, name VARCHAR(100), SEX varchar(2))");String[] inserts = {"insert into user_info values(1,'jsq','女')", "insert into user_info values(2,'ad','女')", "insert into user_info values(3,'sddf','男')","insert into user_info values(4,'sfrfe','男')"};for (int i = 0; i < 4; i++) {Connection conn = pool.getConnection();conn.createStatement().executeUpdate(inserts[i]);}ResultSet resultSet = pool.getConnection().createStatement().executeQuery("select * from user_info");while (resultSet.next()) {log.info("id is {}, name is {}, sex is {}", resultSet.getInt("id"), resultSet.getString("name"), resultSet.getString("sex"));}} catch (ClassNotFoundException | SQLException e) {log.info("have a exception, which is {}", e.getMessage());}}

總結

以上是生活随笔為你收集整理的h2数据库学习----h2数据库基本使用的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。