I don't think my deletes were being committed to the DB. At some point I started getting the correct rows in .Net. I think this happened because I was not putting my OracleCommand object within a transaction... I hope.
Anyways to prevent this use this from happening again I am doing this.
Code:
OracleCommand com = GetCommand(myCommand); com.Connection.Open();
Leave a comment: