2013-06-22 146 views
0
try 
{ 

    OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source= C:\Users\jay.desai\Documents\Visual Studio 2008\Projects\Jahoo Sign in form!\Jahoo Sign in form!\Registration_form.mdb"); 
    con.Open(); 
    OleDbCommand cmd = new OleDbCommand("select * from Login where Username='"+txtlognUsrnm.Text+"' and Password='"+txtlognpswrd+"'", con); 
    OleDbDataReader dr = cmd.ExecuteReader(); 
    if(dr.Read() == true) 
    { 
     MessageBox.Show("Login Successful"); 
    } 
    else 
    { 
     MessageBox.Show("Invalid Credentials, Please Re-Enter"); 
    } 
catch (Exception ex) 
{ 
    MessageBox.Show(ex.ToString()); 
} 

我已創建一個登錄表單,並在Microsoft Access一個表中包含用戶名和密碼fields.when我點擊登錄按鈕,它總是顯示其他消息,雖然用戶名和密碼是相同表。訪問數據庫的登錄表單

+1

你有什麼問題嗎? – Raptor

+0

也許實際上在你的查詢字符串中傳遞密碼? 'txtlognpswrd'應該是'txtlognpswrd.Text'。 **但是** - 請學習並使用參數化查詢來防止SQL注入攻擊。 – Tim

回答

3

單詞PASSWORD是access-jet中的保留關鍵字。你需要把它封裝在方括號中。

OleDbCommand cmd = new OleDbCommand("select * from Login where Username=" + 
         "? and [Password]=?", con); 

也不要使用字符串連接來構建SQL命令,但參數化查詢

有上面代碼中的其他問題。
首先嚐試使用using語句來確保連接和其他一次性對象正確關閉和處置。
第二,如果你只需要檢查登錄憑據,那麼就沒有必要取回全程記錄,你可以使用ExecuteScalar方法避免了OleDbDataReader對象

string constring = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source= C:\Users\jay.desai\Documents\Visual Studio 2008\Projects\Jahoo Sign in form!\Jahoo Sign in form!\Registration_form.mdb"; 
string cmdText = "select Count(*) from Login where Username=? and [Password]=?" 
using(OleDbConnection con = new OleDbConnection(constring)) 
using(OleDbCommand cmd = new OleDbCommand(cmdText, con)) 
{ 
    con.Open(); 
    cmd.Parameters.AddWithValue("@p1", txtlognUsrnm.Text); 
    cmd.Parameters.AddWithValue("@p2", txtlognpswrd.Text); // <- is this a variable or a textbox? 
    int result = (int)cmd.ExecuteScalar() 
    if(result > 0) 
      MessageBox.Show("Login Successful"); 
    else 
     MessageBox.Show("Invalid Credentials, Please Re-Enter"); 
} 
+0

謝謝你...這是我的錯誤,我忘了寫txtLognpswrd後的文本..和耶參數化查詢也是偉大的概念...再次感謝 –