首页 > 数据库 > SQL Server > 正文

不通过dsn访问sql server

2024-08-31 00:48:46
字体:
来源:转载
供稿:网友

商业源码热门下载www.html.org.cn

在连接字符串里加上服务器和数据库驱动程序就可以了
example:
dim conn
set conn = server.createobject("adodb.connection")
conn.connectionstring = "driver={sql server};"server=yourserver;uid=sa;pwd=pwd;database=pubs"
conn.open
set cmd= server.createobject("adodb.command")
set cmd.activeconnection = conn

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表