sqlite簡介:
sqlite是乙個程序庫,實現了乙個 自包含的, 無伺服器, 零配置, 事務性 的sql資料庫引擎。sqlite的**屬於 公共領域,因此可以免費用於任何目的,商業或私人。
sqlite是乙個嵌入式sql資料庫引擎。
與大多數其他sql資料庫不同,sqlite沒有單獨的伺服器程序。
sqlite直接讀寫普通磁碟檔案。具有多個表,索引,觸發器和檢視的完整sql資料庫包含在單個磁碟檔案中。
資料庫檔案格式是跨平台的 - 您可以在32位和64位系統之間或在big-endian和 little-endian 體系結構之間自由複製資料庫 。
sqlite安裝:
解壓上面兩個壓縮檔案到同乙個資料夾下,將得到 sqlite3.def、sqlite3.dll 和 sqlite3.exe ,sqldiff.exe,sqlite3_analyzer.exe檔案。
新增 這個檔案路徑到 path 環境變數,最後在命令提示符下,使用 sqlite3 命令,將顯示如下結果。
d:\program\sqlite-tools-win32-x86-3250200>sqlite3
sqlite version 3.25.2 2018-09-25 19:08:10
enter 「.help」 for usage hints.
connected to a transient in-memory database.
use 「.open filename」 to reopen on a persistent database.
sqlite>
sqlite特點:
android筆記之SQLite 資料庫操作
資料庫的初始化 public class blacklistdb extends sqliteopenhelper override public void oncreate sqlitedatabase sqlitedatabase override public void onupgrade s...
SQLite資料庫學習筆記
android開發中可能會用到資料庫,這裡我打算說些資料庫較少用到但是也很重要的一些知識 1 建立資料庫,建立表,刪除表,修改表,基於表的增,刪,改,查等操作由於用得比較多,就掠過了 android開發基本都知道 下面的內容均以 一張員工表 employee 作為示例,員工表的結構為 employe...
Android資料庫之SQLite
在android作業系統中使用的是sqlite資料庫,我們借助sqliteopenhelper這個sqlitedatabase的工具類來建立資料庫。首先我們需要建立乙個 sqliteopenhelper的子類 class databasehelper extends sqliteopenhelper...