三、開啟cmd命令視窗。進入到sqlite的安裝目錄(shell版本的目錄中),執行命令:sqlite3 mydb.db,即建立了乙個資料庫名稱為mydb的資料庫
四、建表:
create table t_person(
p_id integer,
p_name text(30),
p_age integer
);
即建立了乙個簡單的表。crud所使用的語句和普通的sql幾乎相同。
org.sqlite.jdbc
jdbc:sqlite:f:/a/sqlite-shell/test.db
六、使用jdbc連線sqlite資料庫
public static user getuser(integer userid) throws exception
return user;
}
預設sqlite資料庫沒有使用者名稱和密碼。
SQLite資料庫學習筆記
android開發中可能會用到資料庫,這裡我打算說些資料庫較少用到但是也很重要的一些知識 1 建立資料庫,建立表,刪除表,修改表,基於表的增,刪,改,查等操作由於用得比較多,就掠過了 android開發基本都知道 下面的內容均以 一張員工表 employee 作為示例,員工表的結構為 employe...
Android學習筆記 SQLite資料庫儲存
因為前面提到xml儲存更改檔案很麻煩的緣故,最終還是選擇了使用資料庫儲存 一試才覺十分的方便,速度也快 上原始碼 public class dbhelper extends sqliteopenhelper override public void oncreate sqlitedatabase d...
android學習之sqlite資料庫
sqlite是一種輕量級的關係型資料庫,與大型的資料庫相比,它的體積小,零配置,可以直接執行在應用程式的程序中,非常適合嵌入式的作業系統。sqlite目前支援null,integer,real 浮點數字 text 字串文字 blob 二進位制文字 這5中資料型別。android中的sqlite的資料...