Posted on 2009-03-12 10:18
answer 阅读(709)
评论(2) 编辑 收藏
SQLite官方网站:
http://www.sqlite.org/
SQLite Download Page:
http://www.sqlite.org/download.html
SQLite Wrappers:
http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers
System.Data.SQLite:
(An open source ADO.NET provider for the SQLite database engine)
http://sqlite.phxsoftware.com/
SQLite3 for WinCE or Mobile (EVC篇):
http://www.cnblogs.com/answer/archive/2008/09/12/1289681.html
wxSQLite:
( A wxWindows wrapper for the sqlite database (a lightweight embedded SQL db) )
http://wxsqlite.sourceforge.net
SQLite的可视化工具:
http://www.yunqa.de/delphi/doku.php/products/sqlitespy/index
PS: SQLite最新版本已经可以支持中文路径!!!
SELECT * FROM sqlite_master
SQLite 分页:
Select * From tblTest Limit 9 Offset 10;
以上语句表示从 tblTest 表获取数据,跳过10行,取9行