sql >> データベース >  >> RDS >> Oracle

.NET / Oracle:プログラムでDDLステートメントを使用してスクリプトを実行する方法

    BEGINとENDでラップするだけで、スムーズに動作します

    var content =string.Format("BEGIN {0} END;", File.ReadAllText("script.sql"));
    using (var oracleConnection = new OracleConnection(_connectionString))            
    {
      oracleConnection.Open();
      using (var command = new OracleCommand(content) { Connection = oracleConnection })
      {
           command.CommandType = CommandType.Text;
           command.ExecuteNonQuery();
      }
    }
    


    1. わずかな予算での高可用性-最小限の2ノードのMySQLGaleraクラスターの導入

    2. Javaからテーブル値パラメータを使用してストアドプロシージャを呼び出す

    3. MariaDBでのEXPORT_SET()のしくみ

    4. Oracle CloudPlatformでのMySQLデータベースサービスでのOracleJDeveloperの使用、パート3