我用一个输入参数在 postgresql 中编写了一个函数。我想从 .Net windows Form 调用此函数,但出现如下错误: 错误:42601:语法错误在 »'TestUGI'« 这是我的代码:
Npgsql.NpgsqlConnection conn = new NpgsqlConnection("Server=127.0.0.1;Port=5432;Database=DB3;User Id=postgres;Password=123456;");
conn.Open();
NpgsqlCommand cmd = new NpgsqlCommand("'TestUGI'",conn);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@tablename", "'csnnutzer'");
cmd.ExecuteNonQuery();