我正在
运行程序时的SqlException未处理错误
消息。 bellow是我的视觉工作室的所有代码,并检查附加图像的错误消息屏幕截图。
请帮我找到如何解决这个问题。我在哪里做错了?
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace LoginSystem
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Close();
}
private void button2_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=DESKTOP-V05BRHA\SQLEXPRESS;Initial Catalog=LoginSystem;Integrated Security=True;Pooling=False;");
SqlDataAdapter sda = new SqlDataAdapter("Select Count(*) From Tables where UserName='"+ textBox1.Text + "' and Password='" + textBox2.Text + "'",con);
DataTable dt = new DataTable();
sda.Fill(dt);
if (dt.Rows[0][0].ToString() == "1")
{
this.Hide();
Main ss = new Main();
ss.Show();
}
else
{
MessageBox.Show("Please enter your username and password");
}
}
}
}
答案 0 :(得分:2)
数据库中没有Tables表。你可以从
修改你的查询Select Count(*) From Tables
到
Select Count(*) From Table
此外,我建议将表重命名为Users或Logins。最好保留有意义的表名。