在我的 Windows 窗体中有一个组合框,用户可以从中选择表的名称:
string Command = "INSERT INTO ['"+variable+"'] VALUES ('" + _ID + "','" + txt1.Text + "') ";
Connection(Command);
但是有这样的错误。Could not find output table ''Tels''
并且当写Tels
而不是variable
它正常工作时。
在我的 Windows 窗体中有一个组合框,用户可以从中选择表的名称:
string Command = "INSERT INTO ['"+variable+"'] VALUES ('" + _ID + "','" + txt1.Text + "') ";
Connection(Command);
但是有这样的错误。Could not find output table ''Tels''
并且当写Tels
而不是variable
它正常工作时。