用户代码未处理sqlexection 怎么解决啊?

问题描述

用户代码未处理sqlexection怎么解决啊?usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Web.UI.HtmlControls;usingSystem.Data.SqlClient;usingSystem.Data.Sql;publicpartialclasslogin:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){stringuser_name=Request.Form["user_name"].ToString();stringuser_password=Request.Form["user_password"].ToString();SqlConnectionconn=newSqlConnection("server=.;pwd=;uid=sa;database=login;");conn.Open();SqlCommandcmd=newSqlCommand("selectcount(*)fromloginwhereuser_name='"+user_name+"'anduser_password='"+user_password+"'",conn);intcount=Convert.ToInt32(cmd.ExecuteScalar());if(count>0){Response.Redirect("main.aspx?user_name="+user_name);}else{Response.Redirect("loginFail.htm");}}}

解决方案

解决方案二:
楼主应该看看真正出错的信息就凭楼主所说,根本无法确认是连接出错还是执行语句出错还有确认你的数据库和表名字都是loginSqlConnectionconn=newSqlConnection("server=.;pwd=;uid=sa;database=login;");conn.Open();SqlCommandcmd=newSqlCommand("selectcount(*)fromloginwhereuser_name='"+user_name+"'anduser_password='"+user_password+"'",conn);==即使是login,也该改为SqlConnectionconn=newSqlConnection("server=.;pwd=;uid=sa;database=[login]");conn.Open();SqlCommandcmd=newSqlCommand("selectcount(*)from[login]whereuser_name='"+user_name+"'anduser_password='"+user_password+"'",conn);
解决方案三:
是数据库安装期间没有选择默认
解决方案四:
加try..catch
解决方案五:
错误很可能是:1.连接字符传出了问题2.sql语句写的有问题---建议单步调试,看看到底在哪里出错~
解决方案六:
数据库名是LOGIN表名也是LOGIN?

时间: 2024-09-17 12:19:45

用户代码未处理sqlexection 怎么解决啊?的相关文章

MVC 找了很多都没解决 求助 用户代码未处理 System.Data.ProviderIncompatibleException

问题描述 用户代码未处理System.Data.ProviderIncompatibleExceptionHResult=-2146233087Message=提供程序未返回ProviderManifestToken字符串.Source=System.Data.EntityStackTrace:在System.Data.Common.DbProviderServices.GetProviderManifestToken(DbConnectionconnection)在System.Data.En

用户代码未处理NullReferenceException 未将对象引用设置到对象的实例

问题描述 stringmystr=WebConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;用户代码未处理NullReferenceException未将对象引用设置到对象的实例求大神解决下面是全部代码usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Web;usingSystem.Data.

图片-用户代码未处理invalidcastexception 指定的转换无效

问题描述 用户代码未处理invalidcastexception 指定的转换无效 求求各位大神帮帮忙!急急急!!!!!!!!!!!!!!(http://img.ask.csdn.net/upload/201510/30/1446212280_714028.png)

SqlDataReader dr = sqlCmd.ExecuteReader();用户代码未处理,找不到存储过程UserLogin,如何解决?!

问题描述 SqlConnectionCN=newSqlConnection("server=IT-PC;uid=sa;pwd=123456;database=DiscreteMath1"); //初始化连接字符串  SqlCommandsqlCmd=newSqlCommand("UserLogin",CN);sqlCmd.Connection=CN;CN.Open();//添加命令,从数据库中得到数据stringUserLogin="select*from

用户代码未处理OleDbException??? 急啊 附代码

问题描述 用acess链接数据库 ImportsSystem.Data.OleDbPartialClassFront_LoginInheritsSystem.Web.UI.PageProtectedSubButton1_Click(ByValsenderAsObject,ByValeAsSystem.EventArgs)HandlesButton1.ClickDimconnAsNewOleDbConnectionconn.ConnectionString="provider=Microsoft.

用户代码未处理 System.NullReferenceException Message=未将对象引用设置到对象的实例。

问题描述 "/"应用程序中的服务器错误.未将对象引用设置到对象的实例.说明:执行当前Web请求期间,出现未处理的异常.请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息.异常详细信息:System.NullReferenceException:未将对象引用设置到对象的实例.源错误:执行当前Web请求期间生成了未处理的异常.可以使用下面的异常堆栈跟踪信息确定有关异常原因和发生位置的信息.堆栈跟踪:[NullReferenceException:未将对象引用设置到对象的

用户代码未处理providerIncompatibleException

问题描述 ASP.NETMVC新人 解决方案 解决方案二:就是有异常啊,你看下报异常的具体位置确认到底是什么问题解决方案三:你看下报异常的具体位置确认到底是什么问题解决方案四:翻译后为:提供者不兼容异常你不贴代码只能帮你到这了少年

c# 用户代码未处理RfcInvalidStateException

问题描述 看过很多帖子也百度了很久,还是不得要领.而且,上次它还是正常的,然后又突然这样.请问到底为什么呢.师兄给了我一段话,这是他的项目,但是没和我说要放在哪里.求教

System.Windows.Forms.AxHost.InvalidActiveXStateException”类型的异常在 ESRI.ArcGIS.AxControls.dll 中发生,但未在用户代码中进行处理

private void CopyAndOverwriteMap() { //IObjectCopy接口变量申明 IObjectCopy objectCopy = new ObjectCopyClass(); //要Copy的对象 object toCopyMap = m_mapControl.Map; //复制要复制的对象 object copiedMap = objectCopy.Copy(toCopyMap); //要复制到的文件 object toOverwriteMap = axPag