0

このスクリプトを C# で実行しようとしました:

declare

  NEW_PAP_OPERATOR_ID number;

  cursor cu_records_a_traiter is
    select *    
      from operator_dossier         d,
           pap_operator_verandering ov,
           pap_verandering          v
     where d.operator_id = ov.operator_id
     and v.cr_info = :v_cr_info;

begin

  for rec_cu in cu_records_a_traiter loop

    /* insert new record */

    INSERT INTO BOOD.PAP_OPERATOR
      (HOOFD_OF_NEVENACTIVITEIT)
    VALUES
      (rec_cu.HOOFD_OF_NEVENACTIVITEIT);

    SELECT BOOD.SEQ_PAP_OPERATOR_ID.CURRVAL
      into NEW_PAP_OPERATOR_ID
      FROM dual;

    /* update with new record*/

    UPDATE Bood.Pap_Operator_Verandering
       SET pap_operator_doel_id   = NEW_PAP_OPERATOR_ID,
           datum_wijziging        = Sysdate,
           gebruiker_wijziging_id = '-549'
     WHERE pap_operator_verandering_id = rec_cu.PAP_OPERATOR_VERANDERING_ID;
  end loop;
end;

例外はありませんが、スクリプトは実行されていません。C# なしで SQL スクリプトを実行すると、機能します。currval NEW_PAP_OPERATOR_ID に問題があると思います。今のところ、C# で特別なことは何もしていません。

C# コード:

try
 {
   OracleCommand command = new OracleCommand("myScript", Connection);

   command.Parameters.Add("v_cr_info", OracleDbType.VarChar, changeRequest, ParameterDirection.Input);
   command.ExecuteNonQuery();

   transaction.Commit();
 }
catch (Exception)
 {
   transaction.Rollback();
   throw;
 }
finally
 {
   Connection.Close();
 }
4

1 に答える 1

0

PROC パラメータが表示されておらず、コマンドが PROC であることも指定していません。

OracleCommand command = new OracleCommand("myScript", Connection);
command.CommandType = CommandType.StoredProcedure;
于 2012-10-26T10:55:13.537 に答える