Updating an oracle database
Hi,
I have got a problem updating my oracle database;When i run the code, there is no error detected but when I open the database, no changes have been made. Can someone hemp me please? Here is the code:
string connString = "DSN=cbc;UID=cbc;PWD=cbc";
OdbcConnection cnOracle = new OdbcConnection(connString);
cnOracle.Open();
OdbcCommand cmOracle = cnOracle.CreateCommand();
cmOracle.CommandText = "update mouvement set rapprocher = 1 where numerocompte = '"+code+"'";
MessageBox.Show(" comptes ont été rapprochés avec succès0000!!"); //to insure no errors during the insertion
cmOracle.ExecuteNonQuery();
MessageBox.Show(" comptes ont été rapprochés avec succès11111!!");//to insure no errors during the insertion
cnOracle.Close();