SQLite 資料庫 C Dapper 操作例項

2021-09-24 11:54:49 字數 886 閱讀 5295

例項程式可以直接還原 nuget 包:

軟體執行,先檢查 sqlite 資料庫檔案是否存在。若不存在在建立 sqliteconnection 時,sqlite 會自動建立。接著執行建表語句 create table 。

using newtonsoft.json;

using system;

using system.data.sqlite;

using system.io;

; static void main(string args)

#region 初始化資料庫

static void initsqlitedb()

using (var conn = new sqliteconnection(connstr))

}#endregion

#region 測試插入資料

static void testinsert()

catch (exception ex)

");}}}

#endregion

#region 測試獲取資料

static void testselect()

} #endregion}}

SQLite資料庫掃盲

今天注意到 sqlite 3.6.11 上個月發布的 增加了乙個我期待已久的 online backup 介面,激動之餘就順便和大夥兒聊一下sqlite資料庫。本帖權當是sqlite掃盲,如果你對sqlite已經很熟悉,本文就不必再看了。技術上的優點和特性 sqlite是乙個輕量級 跨平台的關係型資...

瞎掰 Sqlite資料庫

為了方便專案的跨平台,在選用資料庫時選擇了輕量級的跨平台資料庫 sqlite 在使用過程中,將常用介面封裝了一下,使 相對簡潔,使用起來也相對方便。目前封裝了兩個介面 一 封裝了sqlite3 exec介面 int homedatabase callmysql sqlite3 sqlfd,const...

SQLite資料庫基礎

import studentmanager.h import student.h import 4.建立資料庫並引入資料庫的標頭檔案 define ksqlfilename student.sqlite 這個類之乙個單例類,類所建立的物件是唯一的 static studentmanager mana...