各位老师 请看一下这代码哪一点出错了。 我是菜鸟 呵呵

问题描述

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceWindowsFormsApplication1{publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidtextBox2_TextChanged(objectsender,EventArgse){}privatevoidbutton2_Click(objectsender,EventArgse){SqlConnetioncon=newSqlConection("DataSource=LZY_PC;TnitialCatalog=学生管理系统;IntegratedSecurity=True");stringsqlStr=string.Format("selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'.txtUserName.Text,txtPassword.Text");SqlCommandcom=newSqlCommand(sqlStr,con);con.Open();intresult=(int)com.ExecuteScalar();con.Close();if(result==1){Form2fm=newForm2();fm.Show();}else{MessageBox.Show("用户名或者密码错误!请重新输入!");}}privatevoidbutton1_Click(objectsender,EventArgse){}}}

解决方案

解决方案二:
TnitialCatalog请写成IntialCatalog
解决方案三:
sql语句那块有问题,好好检查检查
解决方案四:
selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'

靠的太近了应该写成selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'

解决方案五:
另外,记得贴错误出来,不然不好找问题
解决方案六:
你说出错了,好歹也把错误提示贴出来吧。
解决方案七:
selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'
解决方案八:
SqlConnetioncon=newSqlConection("DataSource=LZY_PC;InitialCatalog=学生管理系统;IntegratedSecurity=True");
解决方案九:
SqlConnetioncon=newSqlConection("DataSource=LZY_PC;InitialCatalog=学生管理系统;IntegratedSecurity=True");selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'不用给我分,上面已经回答了
解决方案十:
usebreakpointtofindouttheerrorandtheneasytofindout.
解决方案十一:
错误1找不到类型或命名空间名称“SqlConnetion”(是否缺少using指令或程序集引用?)f:c#WindowsFormsApplication1WindowsFormsApplication1Form1.cs2713WindowsFormsApplication1这是错误各位老师的回答我刚才看了。确实有代码输入错了、但是好像主要不是这个问题。
解决方案十二:
引用10楼lzy_0230916的回复:

错误1找不到类型或命名空间名称“SqlConnetion”(是否缺少using指令或程序集引用?)f:c#WindowsFormsApplication1WindowsFormsApplication1Form1.cs2713WindowsFormsApplication1这是错误各位老师的回答我刚才看了。确实有代码输入错了、但是好像主要不是这个问题。

你应该早点贴错误上来,你没有引用命名空间:加上:usingSystem.Data;usingSystem.Data.SqlClient;
解决方案十三:
stringsqlStr=string.Format("selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'.txtUserName.Text,txtPassword.Text");sql语句这里写错了应该是string.Format("selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'",txtUserName.Text,txtPassword.Text);
解决方案十四:
引用12楼wsd_asp的回复:

stringsqlStr=string.Format("selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'.txtUserName.Text,txtPassword.Text");sql语句这里写错了应该是string.Format("selectcount(*)lzywhereUserTable='{0}'a……

string.Format("selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'",txtUserName.Text,txtPassword.Text);
解决方案十五:
SqlConnetioncon=newSqlConection("DataSource=LZY_PC;InitialCatalog=学生管理系统;IntegratedSecurity=True");这应该还差一个链接到数据库的用户名或密码吧!
解决方案:

解决方案:
stringsqlStr=string.Format("selectcount(*)lzywhereUserTable='{0}'andPassword='{1}'.txtUserName.Text,txtPassword.Text");你这个sql语句我觉得也不对怎么没有‘from’我觉得也会出错
解决方案:
该回复于2011-06-03 14:08:03被版主删除
解决方案:
selectcount(*)aslzywhereUserTable='{0}'andPassword='{1}'
解决方案:
。。。。好多错,建议找个懂的人当面指导

时间: 2024-11-05 21:33:36

各位老师 请看一下这代码哪一点出错了。 我是菜鸟 呵呵的相关文章

c语言-请高手看一段C程序代码不知道哪里出错了

问题描述 请高手看一段C程序代码不知道哪里出错了 解决方案 另外printf你又拼错了. 解决方案二: 第14行 应为printf 解决方案三: 你的那个所谓的山寨编译器,也不知道有没有windows.h,估计没有. 建议你使用VC++ 解决方案四: 这本书其实我也看过,作者自己做了一个所谓的开发环境,其实用的是GNU C++,它并不包含windows的api函数的头和库. 解决方案五: 出错信息呢,贴出来呗 解决方案六: 你第14行的 printf 写错了 解决方案七: 第14行的printf

java 运算-小白求助,我想实现如下功能,可是代码不知道哪出错了

问题描述 小白求助,我想实现如下功能,可是代码不知道哪出错了 public boolean panduanNullCondition(XSSFRow from, Properties source) { boolean N = true; boolean Y = true; ArrayList<Boolean> al = new ArrayList<Boolean>(); ArrayList<Boolean> Al = new ArrayList<Boolean&

编程-修改了下代码就运行出错了,怎么回事?

问题描述 修改了下代码就运行出错了,怎么回事? #include<iostream> using namespace std; struct list { int data; struct list *next; }; class Stack { struct list *ptr; public: Stack() { ptr=NULL; } void push(int x)//进栈成员函数 { struct list *newnode=new struct list; newnode->

递归法将一个数字倒置(如:12345→54321)代码不知道哪里出错了

问题描述 递归法将一个数字倒置(如:12345→54321)代码不知道哪里出错了 public class Recursion { public static int len(int n){ int j=0; while(n>0) { j++; n=n/10; } return j; } public static int f(int n,int k){ int i,t=n%10; if(n<10) { k=n; return k; } else{ for(i=0;i<len(n);i+

struts2 jsp 编码转换, 请大家帮忙看下我的理解哪里出错了。

问题描述 ===index.jsp===<%@pagelanguage="java"pageEncoding="gbk"contentType="text/html;charset=gbk"%><html><body>      <formmethod="post"action="codeTest.action">            输入中文:<in

winform-c# winfrom post请求网址带多个参数的问题 请看下面代码

问题描述 c# winfrom post请求网址带多个参数的问题 请看下面代码 string strURL = ""http://www.cqjg.gov.cn/newwww/c7/clwz.asp""; System.Net.HttpWebRequest request; request = (System.Net.HttpWebRequest)WebRequest.Create(strURL); //Post请求方式 request.Method = "

path-c++代码,请高手帮我看一下这个代码怎么修改

问题描述 c++代码,请高手帮我看一下这个代码怎么修改 return 0; } TCHAR szPath[MAX_PATH] = { 0 }; HRESULT hr; hr = SHGetFolderPath(NULL, CSIDL_PERSONAL, NULL, SHGFP_TYPE_CURRENT, szPath); if(SUCCEEDED(hr)) { CString strPath = szPath; strPath += _T("\temp"); hr = ::URLDow

安卓 网络-啊,跪求啊,第一次跟老师做项目,帮我看一下哪出错了呗,求求各位了,很短的代码

问题描述 啊,跪求啊,第一次跟老师做项目,帮我看一下哪出错了呗,求求各位了,很短的代码 咋回事啊,没反应呢,我本来是做上网站读取数据并解析代码,然后传回手机显示的,但是实现不了,我就先试试到底能不能链接到服务器,发现失败了,怎么回事啊 解决方案 http://www.cnblogs.com/freeliver54/archive/2011/12/28/2304836.html 解决方案二: 哪里有错?可以考虑调试一下 解决方案三: 把错误贴出来吧,代码貌似没问题 解决方案四: 连接百度,,不好搞

mainwindow-关于qt中lnk2019和lnklnk1120的错误。请看下我的代码哪里出现了问题

问题描述 关于qt中lnk2019和lnklnk1120的错误.请看下我的代码哪里出现了问题 //Label.h----------- #ifndef LABEL_H #define LABEL_H #include #include #include #include #include #include #include #include class MyItem:public QGraphicsItem { public: MyItem(int m_x=0, int m_y=0, QStri