DBMNG数据库管理与应用

科学是实事求是的学问,来不得半点虚假。
当前位置:首页 > SQLite > 驱动及连接

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
本站文章内容,部分来自于互联网,若侵犯了您的权益,请致邮件chuanghui423#sohu.com(请将#换为@)联系,我们会尽快核实后删除。
Copyright © 2006-2023 DBMNG.COM All Rights Reserved. Powered by DEVSOARTECH            豫ICP备11002312号-2

豫公网安备 41010502002439号