我正在尝试创建一个允许用户使用 .sdf 登录的应用程序,互联网上没有太多关于此的内容!
真的可以用一些指针来做。
这是我目前拥有的,但我相信这是一堆乱七八糟的东西,因为无论我在每个文本框中输入什么内容,它都会将我重定向到Form2
(这是意料之中的)。我知道我在某处需要一个 if 语句,但不确定如何实现:
private void Login_Click(object sender, EventArgs e)
{
using (SqlCeConnection yourConnection = new SqlCeConnection("Data Source=C:\\Users\\Username\\Documents\\Databases\\New Folder\\Login.sdf"))
{
string query = "SELECT * FROM tbl_employees where Username like '" + textBox1.Text + "' AND Password like '" + textBox2.Text +"'";
SqlCeDataAdapter dA = new SqlCeDataAdapter(query, yourConnection);
SqlCeCommandBuilder cBuilder = new SqlCeCommandBuilder(dA);
this.Hide();
Form2 secondForm = new Form2();
secondForm.ShowDialog();
}
}