登录/注册数据库连接 - 构建失败c#

时间:2017-09-22 07:40:21

标签: c# database login connection

我尝试创建从我的应用程序到数据库的连接。构建已启动但失败。我不明白为什么。当我按登录时没有任何反应。这是我的代码:

private void button1_Click(object sender, EventArgs e)
    {
        SqlConnection log = new SqlConnection("Data Source=MODIFIEDforStackOverflow;Initial Catalog=logininfo;Integrated Security=True;Connect Timeout=15;Encrypt=False;TrustServerCertificate=True;ApplicationIntent=ReadWrite;MultiSubnetFailover=False");

        log.Open();

        string newcon=("select username from login where username='"+textBox1.Text+"' and password='"+textBox2.Text+"'");

        SqlDataAdapter adp = new SqlDataAdapter(newcon, log);

        DataSet ds = new DataSet();

        adp.Fill(ds);

        DataTable dt = ds.Tables[0];

        if (dt.Rows.Count >= 1)
        {
            settext = textBox1.Text;

            welcome wc = new welcome();
            wc.Show();

            this.Hide();
        }else
        {
            label3.Text = "Invalid Login!";
        }
    }

这是我的错误:

严重级代码描述项目文件行抑制状态 错误无法复制" obj \ Debug \ YourTips_App.exe" to" bin \ Debug \ YourTips_App.exe"。超过重试次数10.失败。 YourTips_App
错误无法复制文件" obj \ Debug \ YourTips_App.exe" to" bin \ Debug \ YourTips_App.exe"。该进程无法访问文件&bin; \ Debug \ YourTips_App.exe'因为它正被另一个进程使用。 YourTips_App

谢谢!

0 个答案:

没有答案