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 中。
其他信息: 至少一个参数没有被指定值。 展开
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 中。
其他信息: 至少一个参数没有被指定值。 展开
展开全部
你的毛病在:
"select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'"
中!
很可能是 user_name 或 pwd 写错了。 Select 命令中,把写错的字段名当成了参数! 所以报错:“信息: 至少一个参数没有被指定值。 ”
"select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'"
中!
很可能是 user_name 或 pwd 写错了。 Select 命令中,把写错的字段名当成了参数! 所以报错:“信息: 至少一个参数没有被指定值。 ”
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
其他信息: 至少一个参数没有被指定值。
解释如下:
看看你数据库login表格中是否有 user_name pwd 两个字段?
如果还是有问题,
调试一下,在
cmdStr = "select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'";
设置一个断点
然后看看 cmdStr 里面的变量值是什么,拷贝一份
解释如下:
看看你数据库login表格中是否有 user_name pwd 两个字段?
如果还是有问题,
调试一下,在
cmdStr = "select * from login where user_name='" +this.textBox1.Text + "' and pwd='" + this.textBox2.Text + "'";
设置一个断点
然后看看 cmdStr 里面的变量值是什么,拷贝一份
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询