J
Jordi Maicas
I've got the problem that after doing an INSERT, I can't see the new records
in my database.
What can I force an UPDATE, before close the databse?
Thanks.
Now, I'm doing...
String evento = "1";
String suceso = "actualizacion";
String fecha = System.DateTime.Now.ToString();
String usuario = "user";
OleDbConnection myConn = new
OleDbConnection(TabStripApp.Properties.Settings.Default.onlydentConnectionString);
String cadena="insert into Log (Tipo_evento,Suceso,Fecha,Usuario) values
('"+evento+"','"+suceso+"','"+fecha+"','"+usuario+"')";
OleDbCommand myComm = new OleDbCommand(cadena, myConn);
myConn.Open();
myComm.ExecuteNonQuery();
myConn.Close();
in my database.
What can I force an UPDATE, before close the databse?
Thanks.
Now, I'm doing...
String evento = "1";
String suceso = "actualizacion";
String fecha = System.DateTime.Now.ToString();
String usuario = "user";
OleDbConnection myConn = new
OleDbConnection(TabStripApp.Properties.Settings.Default.onlydentConnectionString);
String cadena="insert into Log (Tipo_evento,Suceso,Fecha,Usuario) values
('"+evento+"','"+suceso+"','"+fecha+"','"+usuario+"')";
OleDbCommand myComm = new OleDbCommand(cadena, myConn);
myConn.Open();
myComm.ExecuteNonQuery();
myConn.Close();