通過jdbc的連線方式,對server模式的h2資料庫進行增刪查改操作
public
static
void
main
(string[
] args)
//查詢結果
system.out.
println
("開始查詢並列印資料庫內容:");
resultset resultset = statement.
executequery
("select * from test_table");
while
(resultset.
next()
)//顯式釋放資源
statement.
close()
; testdbconnection.
close()
;}catch
(sqlexception
| classnotfoundexception e)
}
貼一下執行結果:
false
insert into test_table(id,name,age,***) values(0,1844,0,31851)
insert into test_table(id,name,age,***) values(1,1845,10,31851)
insert into test_table(id,name,age,***) values(2,1846,20,31851)
insert into test_table(id,name,age,***) values(3,1847,30,31851)
insert into test_table(id,name,age,***) values(4,1848,40,31851)
insert into test_table(id,name,age,***) values(5,1849,50,31851)
insert into test_table(id,name,age,***) values(6,1850,60,31851)
insert into test_table(id,name,age,***) values(7,1851,70,31851)
insert into test_table(id,name,age,***) values(8,1852,80,31851)
insert into test_table(id,name,age,***) values(9,1853,90,31851)
開始查詢並列印資料庫內容:
0--1844--0--31851
1--1845--10--31851
2--1846--20--31851
3--1847--30--31851
4--1848--40--31851
5--1849--50--31851
6--1850--60--31851
7--1851--70--31851
8--1852--80--31851
9--1853--90--31851
process finished with exit code 0
**實踐的環節中,能訪問資料庫的前提是,已經通過手動的方式啟動了h2資料庫,在web專案,一般都是在專案啟動時將資料庫帶起來的,可以參考參考 資料庫基本操作 增刪改查
資料庫從大體來講,分為庫 表 行,總結對這三個物件的增刪改查 一 資料庫 資料庫的建立 1 管理介面studio 右擊資料庫建立 按兆 檔案位置與日誌選擇同一位置 2 語句建立 create database兩個關鍵字 on後面為主檔案資料庫的修改 使用sql語句 alter database 學校...
資料庫操作(增刪改查)
啟動 終端執行mysql 輸入 mysql u root p,提示輸入密碼,是自己設定的,我的是111111 第一步 show databases 第二步 use 資料庫 test 第三步 show tables 上述的準備工作做好之後既可以進行資料庫的操作。1.mysql基本指令操作 建立乙個資料...
資料庫的基本SQL操作(增刪改查)
1 為表新增主鍵 alter table addprimary key col 主鍵新增前 主鍵新增後 2 插入資料 insert into field1,field2,field3.values value1,value2,value3 3 查詢3.1 查詢全部記錄 3.2 條件查詢 查詢全部欄位...