| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 738 人关注过本帖
标题:连接数据库中查询条件使用变量
取消只看楼主 加入收藏
ikonglin
Rank: 2
来 自:中国
等 级:论坛游民
帖 子:71
专家分:38
注 册:2008-4-26
结帖率:47.37%
收藏
已结贴  问题点数:20 回复次数:1 
连接数据库中查询条件使用变量
输入要查询的id:
<input type="text" name="idquerst" id="idquerst" />
<%
dim textid
textid=idquerst.value
Set rs = Server.CreateObject("ADODB.Connection")
rs.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="&server.MapPath("data\userdata.mdb")
set us=server.CreateObject("adodb.recordset")
us.open "select * from users where id='" & textid & "'",rs,1,1
response.Write us("username")
response.Write("<p>")
response.Write us("pwd")
%>
上面这段代码不能运行,想根据text中输入的id号在数据库中查询
搜索更多相关主题的帖子: 数据库 变量 条件 查询 
2010-10-24 22:40
ikonglin
Rank: 2
来 自:中国
等 级:论坛游民
帖 子:71
专家分:38
注 册:2008-4-26
收藏
得分:0 
us.open "select * from users where id=" & textid,rs,1,1这样就可以运行了,自己解决,哈哈
2010-10-24 22:43
快速回复:连接数据库中查询条件使用变量
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016371 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved