首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

rs.open用法出错,该怎么处理

2012-03-17 
rs.open用法出错conn.asp文件%dimMM_conn_STRING_ownMM_conn_STRING_ownDriver{SQLServer}server(lo

rs.open用法出错
conn.asp文件
<%
dim   MM_conn_STRING_own
MM_conn_STRING_own   =   "Driver={SQL   Server};server=(local);uid=sa;pwd=;database=11; "
Set   conn   =   Server.Createobject( "ADODB.Connection ")
conn.open   MM_conn_STRING_own  
%>

<!--#include   file= "top.asp "-->

108行出错处
sql= "select   *   from   user   where   user_name= ' "&user_name& " ' "
rs.open   sql,MM_conn_STRING_own,3,3
if   not   rs.eof   then
        errmsg=errmsg+ " <br> "+ " <li> 用户名已被别人注册 "
        founderr=true
end   if
rs.close

错误信息
Microsoft   OLE   DB   Provider   for   ODBC   Drivers   '80040e14 '  

[Microsoft][ODBC   SQL   Server   Driver][SQL   Server]在关键字   'user '   附近有语法错误。




[解决办法]
select * from [user]

热点排行