ASP数据库调用代码
答案:2 悬赏:0 手机版
解决时间 2021-04-24 14:57
- 提问者网友:藍了天白赴美
- 2021-04-24 01:53
ASP代码调用数据库产品图片和链接及实现产品循环滚动
最佳答案
- 五星知识达人网友:零点过十分
- 2021-04-24 02:34
dim a,rs,connstr,msg
set a=server.createobject("ADODB.CONNECTION")
str="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & server.mappath("xxxx.mdb")
'str="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & x:\xxx\xxxx.mdb 或者填写绝对路径。
a.open str
Dim a,Str,StrServerName,StrDBName,StrUid,StrPwd
StrServerName="xxx.xxx.xxx.xxx" '这里是SQLServer的IP地址,如果是本地,则填入(local)。
StrDBName="xxxx" '数据库名。
StrUid="xxxx" '用户名。
StrPwd="xxxx" '用户登录密码。
Set a = Server.CreateObject("ADODB.Connection")
Str="Driver={SQL Server};Server=" & StrServerName & ";Database=" & StrDBName & ";Uid=" & StrUid & ";Pwd=" & StrPwd & ";"
a.Open StrDSN
%>
set a=server.createobject("ADODB.CONNECTION")
str="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & server.mappath("xxxx.mdb")
'str="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & x:\xxx\xxxx.mdb 或者填写绝对路径。
a.open str
Dim a,Str,StrServerName,StrDBName,StrUid,StrPwd
StrServerName="xxx.xxx.xxx.xxx" '这里是SQLServer的IP地址,如果是本地,则填入(local)。
StrDBName="xxxx" '数据库名。
StrUid="xxxx" '用户名。
StrPwd="xxxx" '用户登录密码。
Set a = Server.CreateObject("ADODB.Connection")
Str="Driver={SQL Server};Server=" & StrServerName & ";Database=" & StrDBName & ";Uid=" & StrUid & ";Pwd=" & StrPwd & ";"
a.Open StrDSN
%>
全部回答
- 1楼网友:毛毛
- 2021-04-24 03:20
access:
<%
'填入有关参数后保存,在需要连接数据库的asp页面文件中加入<!--#include file="accessconnect.asp"-->即可。
dim ak,rs,connstr,msg
set ak=server.createobject("ADODB.CONNECTION")
strDSN="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & server.mappath("xxxx.mdb") '这里是Access数据库的URL路径。
'strDSN="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & x:\xxx\xxxx.mdb 或者填写绝对路径。
ak.open strDSN
%>
MSSQL:
<%
'填入有关参数后保存,在需要连接数据库的asp页面文件中加入<!--#include file="sqlconnect.asp"-->即可。
Dim ak,StrDSN,StrServerName,StrDBName,StrUid,StrPwd
StrServerName="xxx.xxx.xxx.xxx" '这里是SQLServer的IP地址,如果是本地,则填入(local)。
StrDBName="xxxx" '这里是数据库名。
StrUid="xxxx" '这里是用户名。
StrPwd="xxxx" '这里是用户登录密码。
Set ak = Server.CreateObject("ADODB.Connection")
StrDSN="Driver={SQL Server};Server=" & StrServerName & ";Database=" & StrDBName & ";Uid=" & StrUid & ";Pwd=" & StrPwd & ";"
ak.Open StrDSN
%>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯