2011-03-15 30 views
1

使用odbc如何從表中選擇某些內容並輸出到我的asp.net頁面上的標籤?如何從表格中選擇某些內容並輸出到標籤?

{ 

     OdbcConnection cn = new OdbcConnection("Driver={MySQL ODBC 3.51 Driver}; Server=localhost; Database=gymwebsite; User=root; Password=;"); 
     cn.Open(); 
     OdbcCommand cmd = new OdbcCommand("SELECT * FROM User (FirstName, SecondName)", cn); 
     OdbcDataReader reader = cmd.ExecuteReader(); 
     while (reader.Read()) 
     { 
      Name.Text = (reader[0].ToString()); 

     } 
    } 

} 

回答

3

的ExecuteNonQuery不會給你一個輸出,其執行對連接的Transact-SQL語句並返回受影響的行數。改爲參見ExecuteReaderBeginExecuteReader。這些鏈接還包含例子來幫助你:-)

你可能想改變它的東西,如:

while (reader.Read()) 
{ 
     Name.Text = (reader[0].ToString()); 
} 
+0

還是升技失去了香港專業教育學院重新編輯我的帖子我的企圖? – 2011-03-15 17:05:56

+1

請在我的回答中看到添加的代碼。你可能想嘗試一下,看看閱讀器[0]的格式是否也是你所需要的。 – 2011-03-15 17:08:59

+0

不能將對象轉換爲字符串 – 2011-03-15 17:10:42

相關問題