C#.NETのサンプルコードを掲載しています。
      
SQLを実行する(PostgreSQL)
Npgsqlデータプロバイダーを使ってPostgreSQLにSQLを実行するサンプルです。

テストコード
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

//using Npgsql;
/// <summary>
/// SQLを実行します。
/// </summary>
/// <param name="sql">実行するSQL文です</param>
public void ExecuteNonQuery(string sql)
{
    using (NpgsqlCommand command = new NpgsqlCommand())
    {
        NpgsqlConnection conn = new NpgsqlConnection();
        conn.ConnectionString = @"Server=localhost;Port=5432;User Id=admin;Password=admin;Database=TestDatabase;";

        // トランザクションを開始します。
        conn.Open();
        NpgsqlTransaction transaction = conn.BeginTransaction(IsolationLevel.ReadCommitted);

        try
        {
            command.CommandText = sql;
            command.Connection = conn;
            command.Transaction = transaction;
            command.ExecuteNonQuery();

            //トランザクションをコミットします。
            transaction.Commit();
        }
        catch (System.Exception)
        {
            //トランザクションをロールバックします。
            transaction.Rollback();
            throw;
        }
        finally
        {
            conn.Close();
        }
    }
}

      






Copyright (C) 2011 - 2017 猫の気ままなC#日記