C 訪問SQLite資料庫

2021-04-13 22:15:19 字數 928 閱讀 6259

a.解壓後copy c:/sqlite-3_5-0

b.進入cmd模式,進入sqlite-3_5_0目錄,執行sqlite3 mytest.db

c.create table mytable1 (seq int,desc varchar(8));insert into mytable1 values (1,'project');資料建立完成

3.開啟vs2005,參考system.data.sqlite安裝目錄下的system.data.sqlite.dll

sqliteconnection cnn 

=new

sqliteconnection();

cnn.connectionstring =@"

data source=c:sqlite-3_5_0mytest.db";

cnn.open();

sqlitecommand cmd 

=new

sqlitecommand();

cmd.connection 

=cnn;

cmd.commandtext ="

select * from mytable1";

sqlitedataadapter da 

=new

sqlitedataadapter();

da.selectcommand 

=cmd;

dataset ds 

=new

dataset();

da.fill(ds);

C 使用EF訪問Sqlite資料庫

entityframework system.data.sqlite system.data.sqlite.core system.data.sqlite.ef6 system.data.sqlite.linq name sqlitetest connectionstring data source...

C 使用EF訪問Sqlite資料庫

原文 c 使用ef訪問sqlite資料庫 entityframework system.data.sqlite system.data.sqlite.core system.data.sqlite.ef6 system.data.sqlite.linq name sqlitetest connect...

android訪問sqlite資料庫

在 android 中可以使用 eclipse 外掛程式ddms 來檢視,也可以使用 android 工具包中的 adb工具來檢視。android 專案中的 sqlite 資料庫位於 data data 專案包 databases中。1 首先開啟 android 專案的除錯模式,然後找到顯示 ddm...