public void SPROC_LoadGroups()
{
//This gets the table name.
string tablename = cboNetChannel.SelectedItem.ToString();
SqlConnection sqlConnectionCmdString = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=C:\Users\Rick\Documents\Visual Studio 2010\Projects\Server\database\ClientRegit.mdf;Integrated Security=True;User Instance=True");
//This is the table name and Query that identifies with the selected table
string Command = "SELECT Client_Groups" + "FROM" + tablename;
SqlCommand sqlCommand = new SqlCommand(Command, sqlConnectionCmdString);
SqlDataAdapter objDA = new SqlDataAdapter(sqlCommand);
DataSet dsGroups = new DataSet();
objDA.Fill(dsGroups, "dtGroup");
cboExistingG.DataSource = dsGroups.Tables["dtGroup"];
cboExistingG.DisplayMember = "Client_Groups";
//cboExistingG.ValueMember = "ID";
}
錯誤,我得到的是這種{「附近有語法錯誤‘ - ’。」}與表
我得到的情況是可以查詢的表類似於GUID名稱值 我的表名是43d5377-0dcd-40e6-b95c-8ee980b1e248
我生成與名爲43d5377-0dcd-40e6-b95c-8ee980b1e248表名稱的網絡數據表中標識組被允許和SQL不禁止這樣的表名。
這是我的代碼我得到一個錯誤,我通過創建一個查詢來允許我使用所選表值查詢查詢。
完美現在謝謝你們夥計 – shawn
歡迎@shawn! – BizApps