呼叫方法
注意事項
1. @@identity last_insert_rowid()
2. select cn = count(*) from ... select count(*) cn from ...
3. limit startindex,itemcn 這兒的startindex是從0開始的,而row_number()是從1開始的
4. sqlite中沒有select top,用limit即可
5. sqlite自增字段,如果在事務中插入資料失敗,並不會占用增長後的id,而sql server中對應的id將無效
6. sqlite中沒有getdate日期函式,在類中加入引數如下dbtype.datetime,datetime.now.tostring("s")
7. sqlite支援replace into語法,sql server 2008中支援merge to
SQLite資料庫操作類
呼叫方法 注意事項 1.identity last insert rowid 2.select cn count from select count cn from 3.limit startindex,itemcn 這兒的startindex是從0開始的,而row number 是從1開始的 4....
資料庫操作 SQLite
sqlite 是乙個輕量級的關聯式資料庫。sqlite最初的設計目標是用於嵌入式系統,它占用資源非常少,在嵌入式裝置中,只需要幾百k的記憶體就夠了,目前應用於android ios windows phone等智慧型手機。ios 使用時sqlite,只需要加入 libsqlite3.dylib 依賴...
資料庫操作 SQLite
sqlite 是乙個輕量級的關聯式資料庫。sqlite最初的設計目標是用於嵌入式系統,它占用資源非常少,在嵌入式裝置中,只需要幾百k的記憶體就夠了,目前應用於android ios windows phone等智慧型手機。ios 使用時sqlite,只需要加入 libsqlite3.dylib 依賴...