R
Robert McCabe
How do I have to code the execution of such an INSERT or UPDATE SQL statement ?
Given the follwoing code:
command = connection.CreateCommand();
command.CommandText = "INSERT ....";
A SELECT statement would continue with:
OracleDataReader rdr;
rdr = commnad.ExecuteReader();
But this doesn't work for INSERT and UPDATE commands.
How should I proceed in this case ?
Robert
Given the follwoing code:
command = connection.CreateCommand();
command.CommandText = "INSERT ....";
A SELECT statement would continue with:
OracleDataReader rdr;
rdr = commnad.ExecuteReader();
But this doesn't work for INSERT and UPDATE commands.
How should I proceed in this case ?
Robert