主頁 > 知識(shí)庫 > C#中使用SQLite數(shù)據(jù)庫的方法介紹

C#中使用SQLite數(shù)據(jù)庫的方法介紹

熱門標(biāo)簽:陜西人工外呼系統(tǒng)哪家好 山西防封卡電銷卡套餐 云南外呼電銷機(jī)器人系統(tǒng) 浙江外呼系統(tǒng)怎么安裝 廈門商鋪地圖標(biāo)注 海外地圖標(biāo)注門市標(biāo) 上海楊浦怎么申請(qǐng)申請(qǐng)400電話 地圖標(biāo)注多個(gè)行程 銅川小型外呼系統(tǒng)運(yùn)營(yíng)商
【SQLite管理工具簡(jiǎn)介】
推薦以下2款:
Navicat for SQLite:功能非常強(qiáng)大,幾乎包含了數(shù)據(jù)庫管理工具的所有必需功能,操作簡(jiǎn)單,容易上手。唯一的缺點(diǎn)是不能打開由System.Data.SQLite.dll加密過的數(shù)據(jù)庫。
Database.Net:臺(tái)灣人用.net開發(fā)的全能數(shù)據(jù)庫管理工具,可以管理多種數(shù)據(jù)庫,包括MSSQL、MYSQL、IBM DB2、Oracle、Access、Excel、OleDb、Odbc等十多種數(shù)據(jù)庫(或數(shù)據(jù)接口),功能沒有Navicat那么多,只包含最基本功能。對(duì)SQLite而言,Database.Net最大的優(yōu)點(diǎn)是支持打開由System.Data.SQLite.dll加密過的數(shù)據(jù)庫,且可以隨時(shí)對(duì)數(shù)據(jù)庫設(shè)置密碼,是.net下開發(fā)SQLite必備的小工具。下載地址:http://fishcodelib.com/Database.htm 腳本之家下載地址 https://www.jb51.net/database/41238.html
建議以Navicat for SQLite為主,Database.Net為輔,只要涉及到數(shù)據(jù)庫加密時(shí)才用后者。
【操作SQLite實(shí)例】
操作SQlite的方法基本同其他數(shù)據(jù)庫相同,但有一些區(qū)別:
『例1』整數(shù)似乎都是Int64的。
查詢出網(wǎng)站App_Data目錄下“省市.db”數(shù)據(jù)庫中city表的總記錄數(shù)
復(fù)制代碼 代碼如下:

SQLiteConnection cn = new SQLiteConnection("Data Source=|DataDirectory|省市.db;Version=3");
SQLiteCommand cmd = new SQLiteCommand("select count(*) from city", cn);
cn.Open();
int recordCount = (int)(Int64)cmd.ExecuteScalar();
cn.Close();
Response.Write(recordCount);

SQLite中count函數(shù)返回的是一個(gè)Int64的整數(shù),這一點(diǎn)同MSSQL、Access等不同。實(shí)際上,經(jīng)過有限的使用發(fā)現(xiàn),似乎所有INTEGER字段的返回值都是Int64,這一點(diǎn)未經(jīng)過有效證實(shí)。ExecuteScalar方法返回一個(gè)object實(shí)例,按照C#規(guī)定,拆箱時(shí)進(jìn)行標(biāo)準(zhǔn)轉(zhuǎn)換,必須轉(zhuǎn)換成該object實(shí)例實(shí)際存儲(chǔ)的格式,因此分兩步,先轉(zhuǎn)換成Int64,再轉(zhuǎn)換成int。當(dāng)然用.net中某些高級(jí)轉(zhuǎn)換器如Convert.ToInt32方法只要一步就可以了。
『例2』批量增刪改時(shí)需要用事務(wù),否則效率很低。
批量插入1000條記錄,每條記錄只有簡(jiǎn)單的id、name、password三個(gè)字段:
復(fù)制代碼 代碼如下:

SQLiteConnection cn = new SQLiteConnection("Data Source=c:\\測(cè)試.db3;Version=3;password=12345");
SQLiteCommand cmd = new SQLiteCommand("select count(*) from test", cn);
cn.Open();
int recordCount = (int)(Int64)cmd.ExecuteScalar();
Response.Write("當(dāng)前的總記錄數(shù):" + recordCount + "br/>");
for (int i = 0; i 1000; i++)
{
cmd.CommandText = "insert into test values(@id,@name,@password)";
cmd.Parameters.AddWithValue("@id", i);
cmd.Parameters.AddWithValue("@name", "姓名" + i);
cmd.Parameters.AddWithValue("@password", (i * 2).ToString());
cmd.ExecuteNonQuery();
}
cmd.CommandText = "select count(*) from test";
recordCount = (int)(Int64)cmd.ExecuteScalar();
cn.Close();
Response.Write("當(dāng)前的總記錄數(shù):" + recordCount + "br/>");

經(jīng)過測(cè)試,這段代碼中的for循環(huán)花費(fèi)了70000~90000毫秒,一分鐘多!
改用事務(wù)執(zhí)行:
復(fù)制代碼 代碼如下:

SQLiteConnection cn = new SQLiteConnection("Data Source=c:\\測(cè)試.db3;Version=3;password=12345");
SQLiteCommand cmd = new SQLiteCommand("select count(*) from test", cn);
cn.Open();
int recordCount = (int)(Int64)cmd.ExecuteScalar();
Response.Write("當(dāng)前的總記錄數(shù):" + recordCount + "br/>");
SQLiteTransaction tran = cn.BeginTransaction();
cmd.Transaction = tran;
try
{
for (int i = 0; i 1000; i++)
{
cmd.CommandText = "insert into test values(@id,@name,@password)";
cmd.Parameters.AddWithValue("@id", i);
cmd.Parameters.AddWithValue("@name", "姓名" + i);
cmd.Parameters.AddWithValue("@password", (i * 2).ToString());
cmd.ExecuteNonQuery();
}
tran.Commit();
}
catch
{
tran.Rollback();
Response.Write("執(zhí)行出錯(cuò)!");
}
finally
{
cmd.CommandText = "select count(*) from test";
recordCount = (int)(Int64)cmd.ExecuteScalar();
cn.Close();
Response.Write("當(dāng)前的總記錄數(shù):" + recordCount + "br/>");
}

經(jīng)過測(cè)試,這段代碼中的try部分只用了100~150毫秒!開啟事務(wù)后,效率非常高!
『例3』一般開發(fā)中可以編寫自己的數(shù)據(jù)庫通用操作類,進(jìn)一步封裝ADO.NET。
如上面用事務(wù)操作的代碼,改用數(shù)據(jù)庫通用操作類后:
復(fù)制代碼 代碼如下:

SQLiteData md = new SQLiteData("Data Source=c:\\測(cè)試.db3;Version=3;password=12345");
int recordCount = (int)(Int64)md.ExecuteScalar("select count(*) from test");
Response.Write("當(dāng)前的總記錄數(shù):" + recordCount + "br/>");
md.CreateTransaction();
try
{
for (int i = 0; i 1000; i++)
md.ExecuteNonQuery("insert into test values(@id,@name,@password)", "@id", i, "@name", "姓名" + i, "@password", (i * 2).ToString());
md.CommitTransaction();
}
catch
{
md.RollBack();
Response.Write("執(zhí)行出錯(cuò)!");
}
finally
{
recordCount = (int)(Int64)md.ExecuteScalar("select count(*) from test");
md.Close();
Response.Write("當(dāng)前的總記錄數(shù):" + recordCount + "br/>");
}

可以看到代碼精簡(jiǎn)了很多。

【SQLite相關(guān)有用的鏈接地址】

SQLite官方網(wǎng)站:http://www.sqlite.org/

SQLite內(nèi)置核心函數(shù)參考文檔:http://www.sqlite.org/lang_corefunc.html

SQLite日期時(shí)間函數(shù)參考文檔:http://www.sqlite.org/lang_datefunc.html

SQLite數(shù)學(xué)函數(shù)參考文檔:http://www.sqlite.org/lang_aggfunc.html

SQLite相關(guān)SQL語法參考文檔:http://www.sqlite.org/lang.html

System.Data.SQLite.dll數(shù)據(jù)訪問驅(qū)動(dòng)下載地址:http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

您可能感興趣的文章:
  • C#操作SQLite數(shù)據(jù)庫方法小結(jié)(創(chuàng)建,連接,插入,查詢,刪除等)
  • ASP.NET(C#)中操作SQLite數(shù)據(jù)庫實(shí)例
  • c#幾種數(shù)據(jù)庫的大數(shù)據(jù)批量插入(SqlServer、Oracle、SQLite和MySql)
  • C#簡(jiǎn)單訪問SQLite數(shù)據(jù)庫的方法(安裝,連接,查詢等)
  • C#基于SQLiteHelper類似SqlHelper類實(shí)現(xiàn)存取Sqlite數(shù)據(jù)庫的方法
  • C#操作SQLite數(shù)據(jù)庫之讀寫數(shù)據(jù)庫的方法
  • C#/.Net 中快速批量給SQLite數(shù)據(jù)庫插入測(cè)試數(shù)據(jù)
  • C#中嵌入SQLite數(shù)據(jù)庫的簡(jiǎn)單方法
  • C#簡(jiǎn)單查詢SQLite數(shù)據(jù)庫是否存在數(shù)據(jù)的方法
  • C# SQLite數(shù)據(jù)庫入門使用說明

標(biāo)簽:信陽 自貢 許昌 西雙版納 孝感 朔州 萊蕪 常州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《C#中使用SQLite數(shù)據(jù)庫的方法介紹》,本文關(guān)鍵詞  中,使用,SQLite,數(shù)據(jù)庫,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《C#中使用SQLite數(shù)據(jù)庫的方法介紹》相關(guān)的同類信息!
  • 本頁收集關(guān)于C#中使用SQLite數(shù)據(jù)庫的方法介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章