2014-01-17 53 views

回答

0

如果您正在使用MS SQL嘗試使用::

using System.Data.SQLClient; 

Class DataExtract 
{ 

Public DataTable Extract() 
    { 
    SqlConnection con = new SqlConnection("Data Source = .; 
             Initial Catalog = domain; 
             Integrated Security = True"); 
    con.Open(); 
    SqlCommand cmd = new SqlCommand("Select * from tablename", con); 

    Return new DataTable().load(cmd.ExecuteReader()); 

    } 
} 
+0

我只是用文本框來顯示數據,而不是在表格中。 – Subhan

+0

僅將所需列的值分配給文本框,如:: TextBox1.Text = Extract()。行[RowNumber] [「ColumnNameORIndex」]。ToString(); – Pritam