1 つの入力パラメータを使用して postgresql に関数を記述しました。.Net Windows フォームからこの関数を呼び出したいのですが、次のようなエラーが発生します: エラー: 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();