ASP连接SQLite
SQLite
作为一个开源的嵌入式数据库产品,具有系统开销小,检索效率高的特性,适用于手机、PDA、机顶盒设备等电器,并且作为嵌入式数据库在可下载的消费类应用程序中运行的很好。
SQLite与COM
我找到的是newObjects公司的一个免费版本,网址www.newobjects.com,安装axpack1pc.exe和SQLiteDBManAll.exe(管理端)就可以用了。
使用方法,写一个测试的asp页面
Dim Content,DB, DBPath, StrSQL
Content = Request.Form("Content")
Set DB = Server.CreateObject("newObjects.sqlite3.dbutf8")
DBPath = Server.MapPath(".") & "\spring.db"
If DB.Open(DBPath) Then
StrSQL = "Update SH_Spring Set Content=? Where ID=1"
Dim a(0)
a(0) = Content
DB.AExecute StrSQL, a
DB.Close
Else
Response.Write "连接数据库时发生错误: "& db.LastError
End If
Set DB = Nothing