我有问题的代码:
NpgsqlCommand if_ex = new NpgsqlCommand("SELECT count(id_unit) FROM unit WHERE name=" + "'" + tmp + "'", conn);
int ex = (int)if_ex.ExecuteScalar();
抛出异常:
指定的演员表无效。
我正在尝试获取具有相同名称的列的行数(我传递的字符串)
我知道我应该使用参数,但此时我只测试了一些东西,所以我想现在还不如这样做。