Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

ODP.NET UPDATE... RETURNING INTO... várias linhas, tipo de parâmetro


finalmente, depois de horas pesquisando e brincando com código, cheguei às seguintes conclusões (além da dor de cabeça):

eu consegui o que eu queria usando combinação de
  1. uma dica aqui , que sugeriu envolver a instrução UPDATE..RETURNING em um bloco PL/SQL anônimo (começar com BEGIN e terminar com END;) - isso foi sem explicação e ainda não sei exatamente por que o comportamento é diferente
  2. snippet de código na documentação da Oracle sobre OracleCommand, especificamente a parte sobre vinculação de PL /SQL matrizes associativas com BULK COLLECT INTO (não foi possível fazer a vinculação simples de matriz funcionar ..):


try
{
    conn.Open();
    transaction = conn.BeginTransaction();

    cmd = new OracleCommand();
    cmd.Connection = GetConnection();

    cmd.CommandText =
        "BEGIN UPDATE some_table " +
        "SET status = 'locked', " +
        "    locked_tstamp = SYSDATE, " +
        "    user_name = '" + user + "' " +
        "WHERE rownum <= 4 " +
        "RETURNING id BULK COLLECT INTO :id; END;";

    cmd.CommandType = CommandType.Text;

    cmd.BindByName = true;
    cmd.ArrayBindCount = 4;

    p = new OracleParameter();
    p.ParameterName = "id";
    p.Direction = ParameterDirection.Output;
    p.OracleDbType = OracleDbType.Int64;
    p.Size = 4;
    p.ArrayBindSize = new int[] { 10, 10, 10, 10 };
    p.CollectionType = OracleCollectionType.PLSQLAssociativeArray;
    cmd.Parameters.Add(p);

    int nRowsAffected = cmd.ExecuteNonQuery();

    // nRowsAffected is always -1 here
    // we can check the number of "locked" rows only by counting elements in p.Value (which is returned as OracleDecimal[] here)
    // note that the code also works if less than 4 rows are updated, with the exception of 0 rows
    // in which case an exception is thrown - see below
    ...
}
catch (Exception ex)
{
    if (ex is OracleException && !String.IsNullOrEmpty(ex.Message) && ex.Message.Contains("ORA-22054")) // precision underflow (wth)..
    {
        Logger.Log.Info("0 rows fetched");
        transaction.Rollback();
    }
    else
    {
        Logger.Log.Error("Something went wrong during Get : " + ex.Message);
        ret = null;
        transaction.Rollback();
    }
}
finally
{
    // do disposals here
}
...