小型資料庫的查詢

2021-04-01 17:25:43 字數 522 閱讀 1351

dim objrs as new recordset, objcn as new connection, strsql as string

strsql = "select * from 表 where 字段 like '" & trim(text) & "'"

with objcn

.provider = "sqloledb"

.connectionstring = "provider=msdasql.1;persist security info=false;data source=資料來源 (odbc)"

.open

end with

with objrs

set .activeconnection = objcn

.cursorlocation = aduseclient

.cursortype = adopenstatic

.open strsql

end with

set datagrid.datasource = objrs

小型資料庫的選擇

小型資料庫的選擇 一直使用sql server開發,沒有用過access之外其它的db。最近正想做個理財工具,這種小東西當然不可能用sql server資料庫啦,可又不想用access,於是想起在blog中看到關於小型資料庫的文章,收集如下資料 據稱,在國外,需要使用客戶端資料庫的情況中,有30 左...

幾個小型資料庫的比較

幾個小型資料庫的比較 from 2007 09 21 11 31 access,msde 2000,embedded firebird,sqlite等都是可以免費再分發 free redistributable 的資料庫。相比而言,msde 2000 顯著缺點是需要安裝,最大優點是和伺服器端的 sq...

搭建小型access資料庫實錄

今天在確認實習生不能幫忙搭建資料庫後,自己根據業務需求嘗試搭了乙個小型access資料庫。搭建了以acct id為主鍵的兩種資料。1 客戶資訊,包括 由業務人員手工更新彙總的資料,如客戶所在區域,商業資訊等。由機器抓取的客戶資訊,如客戶賬號狀態,專屬業務人員資訊等等。上述資料按照每月定期更新,以及每...