在我的Windows窗体中有一个comboBox,用户可以从中选择表名:
string Command = "INSERT INTO ['"+variable+"'] VALUES ('" + _ID + "','" + txt1.Text + "') ";
Connection(Command);
但是有这样的错误
。Could not find output table ''Tels''
当写Tels
代替variable
时,它可以正常工作。
答案 0 :(得分:0)
我自己找到了:
string Command = "INSERT INTO [" + variable + "] VALUES ('" + _ID + "','" + txt1.Text + "') ";
Connection(Command);
你应该删除变量周围的引号!!!!