basic(基本的)
data source=filename;version=3;
using utf16(使用utf16編碼)
data source=filename;version=3;useutf16encoding=true;
with password(帶密碼的)
data source=filename;version=3;password=mypassword;
using the pre 3.3x database format(使用3.3x前資料庫格式)
data source=filename;version=3;legacy format=true;
read only connection(唯讀連線)
data source=filename;version=3;read only=true;
with connection pooling(設定連線池)
data source=filename;version=3;pooling=false;max pool size=100;
using datetime.ticks as datetime format()
data source=filename;version=3;datetimeformat=ticks;
store guid as text(把guid作為文字儲存,預設是binary)
data source=filename;version=3;binaryguid=false;
如果把guid作為文字儲存需要更多的儲存空間
specify cache size(指定cache大小)
data source=filename;version=3;cache size=2000;
cache size 單位是位元組
specify page size(指定頁大小)
data source=filename;version=3;page size=1024;
page size 單位是位元組
sqlite字串拼接
select path from t category where depth 0 and type 0 用 拼接字串 比如path是 1001 的話 那結果就是 1001 數字相加 select a b 結果為0 select a 1 結果為1 select a 1 結果為1 select 2 1...
連線字串
建立資料庫連線 sqlconnection con new sqlconnection con.connectionstring system.configuration.configurationmanager.connectionstrings con tostring 配置檔案中已經配置好連線...
資料庫連線字串 EXCEL 連線字串
odbc 標準driver driverid 790 dbq c myexcel.xls defaultdir c mypath sql表示式 select from sheet1 例如 在excel工作表名稱後面跟 字元並且使用 將其括起來。ole db 標準provider microsoft....