一步步教你如何在Excel中实现横向打印的技巧
826
2022-05-30
参考文档:http://h2database.com/html/main.html
依赖
1
2
3
4
5
代码示例
package com.demo.h2; import java.sql.*; public class H2Demo { public static void main(String[] args) throws ClassNotFoundException, SQLException { String url = "jdbc:h2:./database"; String driverClass = "org.h2.Driver"; Class.forName(driverClass); Connection connection = DriverManager.getConnection(url); Statement statement = connection.createStatement(); // 创建数据表 statement.execute("DROP TABLE IF EXISTS user"); statement.execute("create table user(id int(11) primary key auto_increment, name varchar(20))"); // 添加数据 statement.executeUpdate("insert into user(name) values('刘备')"); statement.executeUpdate("insert into user(name) values('关羽')"); statement.executeUpdate("insert into user(name) values('张飞')"); // 查询数据 ResultSet resultSet = statement.executeQuery("select * from user"); while (resultSet.next()){ Integer id = resultSet.getInt("id"); String name = resultSet.getString("name"); System.out.println("id: " + id + ", name: " + name); } // 关闭链接 resultSet.close(); statement.close(); connection.close(); } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
使用IDEA打开的时候,如果连接不上,可以试试配置路径不要写后缀database.mv.db -> database
Java 数据库
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。