Visual Studio를 처음 사용합니다. 현재 로그인 양식을 만들고 있습니다.
이 코드가 있습니다.
string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
try
{
using (OdbcConnection connect = new OdbcConnection(connectionString))
{
connect.Open();
OdbcCommand cmd = new OdbcCommand("SELECT username, password FROM receptionist", connect);
OdbcDataReader reader = cmd.ExecuteReader();
if (username_login.Text == username && password_login.Text == password)
{
this.Hide();
MessageBox.Show("Invalid User", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
else
MessageBox.Show("Invalid User", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
connect.Close();
}
}
catch (OdbcException ex)
{
MessageBox.Show(ex.Message, "error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
그러나 사용자 이름과 암호를 입력하려고 할 때마다 구성 시스템을 초기화하지 못했습니다 라는 오류 가 있습니다 . 나는 이것이 어떤 종류의 문제인지 궁금하고 어떻게 해결할 수 있습니까?
도와주세요.