Oracle
 sql >> Database >  >> RDS >> Oracle

AGGIORNAMENTO ODP.NET... RESTITUZIONE IN... più righe, Tipo di parametro

infine, dopo ore di ricerca e di gioco con il codice, sono giunto alle seguenti conclusioni (a parte il mal di testa):

ho ottenuto quello che volevo usando la combinazione da

  1. un suggerimento qui , che ha suggerito di racchiudere l'istruzione UPDATE..RETURNING in un blocco PL/SQL anonimo (inizia con BEGIN e termina con END;) - questo è andato senza spiegazioni e ancora non so esattamente perché il comportamento è diverso
  2. frammento di codice nella documentazione Oracle su OracleCommand, in particolare la parte parte relativa al binding PL /array associativi SQL con BULK COLLECT INTO (impossibile far funzionare il semplice binding dell'array..):

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
}
...