C#.NETのサンプルコードを掲載しています。
      
SQLを実行する(Oracle)
Oracle DataAccessデータプロバイダーを使ってOracleデータベースにSQLを実行するサンプルです。 参照設定にはOracle.DataAccess.dllを設定します。
テストコード
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
39
40
41
42
43
44
45
46
47

private void button_Click(object sender, EventArgs e)
{
    ExecuteNonQuery("UPDATE bread SET name = 'あんぱん(変更)' WHERE id = '0001'");
}

// 参照設定にはOracle.DataAccess.dllを設定します。
// using Oracle.DataAccess.Client;
/// <summary>
/// SQLを実行します。
/// </summary>
/// <param name="sql">実行するSQL文です</param>
public void ExecuteNonQuery(string sql)
{
    using (OracleCommand command = new OracleCommand())
    {
        OracleConnection conn = new OracleConnection();
        conn.ConnectionString = conn.ConnectionString = @"User Id=test; Password=pass; Data Source=" +
        "(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))" +
        "(CONNECT_DATA =(SERVER = DEDICATED)))";


        // トランザクションを開始します。
        conn.Open();
        OracleTransaction 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#日記