使用变量表名称向数据库添加数据

时间:2013-05-14 04:21:04

标签: c#-4.0

在我的Windows窗体中有一个comboBox,用户可以从中选择表名:

string Command = "INSERT INTO ['"+variable+"']  VALUES ('" + _ID + "','" + txt1.Text + "') ";
Connection(Command);

但是有这样的错误 。Could not find output table ''Tels''

当写Tels代替variable时,它可以正常工作。

1 个答案:

答案 0 :(得分:0)

我自己找到了:

string Command = "INSERT INTO [" + variable + "]  VALUES ('" + _ID + "','" + txt1.Text + "') ";
Connection(Command);

你应该删除变量周围的引号!!!!