C#与Access的连接故障,请教大虾们

RTusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.... RT
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;

namespace WindowsFormsApplication28
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{

string conStr = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\login.mdb";
OleDbConnection con = new OleDbConnection(conStr);
con.Open();
string cmdStr = "select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'";

OleDbCommand cmd = new OleDbCommand(cmdStr, con);
OleDbDataReader reader = cmd.ExecuteReader();

if (reader.Read()) //如果找到用户信息,说明登录成功
{
MessageBox.Show("登陆成功");
}
else
{
MessageBox.Show("用户名或密码错误!");
}

reader.Close();
cmd.Connection.Close();
con.Close();
}

private void button2_Click(object sender, EventArgs e)
{
this.Close();
}

}
}
以上是我的代码 控件用了两个TextBox,两个Button 。

运行时显示的错误 但我不知道怎么处理

未处理的“System.Data.OleDb.OleDbException”类型的异常出现在 System.Data.dll 中。

其他信息: 至少一个参数没有被指定值。
展开
 我来答
zjgzfs
2010-05-05 · TA获得超过428个赞
知道小有建树答主
回答量:380
采纳率:0%
帮助的人:483万
展开全部
你的毛病在:
"select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'"

中!

很可能是 user_name 或 pwd 写错了。 Select 命令中,把写错的字段名当成了参数! 所以报错:“信息: 至少一个参数没有被指定值。 ”
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
志同道德的码农
2010-05-05 · TA获得超过327个赞
知道小有建树答主
回答量:230
采纳率:0%
帮助的人:173万
展开全部
其他信息: 至少一个参数没有被指定值。
解释如下:
看看你数据库login表格中是否有 user_name pwd 两个字段?

如果还是有问题,
调试一下,在
cmdStr = "select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'";
设置一个断点
然后看看 cmdStr 里面的变量值是什么,拷贝一份
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式