一个数据库 查询的问题
我有一个注册用户的功能,现在打算根据注册的用户 判断出用户的级别
我的查询语句是这样的:
<%
strsql="select * from pass where yonghu=seesion('yonghu')"
set rs1=server.CreateObject("adodb.recordset")
rs1.open strsql,db,1
'if not(rs.eof or rs.bof) then
%>
<td align="center">
<% if rs1("quanxian")=1 then response.write ("<font color='#ff9c00'>"&"金卡会员"& "</font>") else if rs1("quanxian")=3 then response.Write("<font color='#ff0000'>"&"VIP会员"& "</font>") else response.write "普通会员" end if %>
</td>
<%
'end if
rs1.close
set rs1=nothing
%>
但是会报错 报错是:
Microsoft OLE DB Provider for ODBC Drivers 错误 '80004005'
[Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序
我的查询语句是这样的:
<%
strsql="select * from pass where yonghu=seesion('yonghu')"
set rs1=server.CreateObject("adodb.recordset")
rs1.open strsql,db,1
'if not(rs.eof or rs.bof) then
%>
<td align="center">
<% if rs1("quanxian")=1 then response.write ("<font color='#ff9c00'>"&"金卡会员"& "</font>") else if rs1("quanxian")=3 then response.Write("<font color='#ff0000'>"&"VIP会员"& "</font>") else response.write "普通会员" end if %>
</td>
<%
'end if
rs1.close
set rs1=nothing
%>
但是会报错 报错是:
Microsoft OLE DB Provider for ODBC Drivers 错误 '80004005'
[Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序
这是哪里除了问题呀? 帮忙解决一下呀 谢谢了!!