我一直在研究一個讓我體驗C#編碼的應用程序。現在,我正在創建註冊新員工表單。將新員工數據保存到MS SQL現在沒問題。我想在表格中顯示這些數據。我使用datagridview,但我不確定是否仍然需要編碼,或者我只是按照datagridview下拉菜單中的步驟操作。我嘗試了兩種方法,但都沒有工作。 Datgridview Task之後也沒有工作,我無法連接到SQL服務器。我不確定我出錯的地方。這裏是編碼,請幫我檢查我錯了什麼。錯誤是「keywork‘數據庫’附近的語法錯誤是什麼數據庫被稱爲如何在MS SQL Server上顯示WF表格上的表格
private void DisplayTable_Click(object sender, EventArgs e)
{
string strConnectionString = @"Data Source = KK\SQLEXPRESS; Integrated Security = SSPI; Initial Catalog = JeanDB";
SqlConnection cn = new SqlConnection(strConnectionString);
cn.Open();
string Query = ("Select * from Database.JeanDB");
SqlCommand DisplayTableData = new SqlCommand(Query, cn);
try
{
SqlDataAdapter sda = new SqlDataAdapter();
sda.SelectCommand = DisplayTableData;
DataTable dbdataset = new DataTable();
sda.Fill(dbdataset);
BindingSource bSource = new BindingSource();
bSource.DataSource = dbdataset;
dataGridView1.DataSource = bSource;
sda.Update(dbdataset);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
什麼是您正在選擇的表格? –
我正在從表名dbo.Employees – kkcoder