MimerConnection connection = new MimerConnection();
//
// Open a connection to the database server ExampleDB on the same node (local) as the client
//
connection.ConnectionString = "Database=ExampleDB;Protocol=local;User Id=MIMER_STORE;Password=GoodiesAreUs";
try {
connection.Open();
//
// Insert a row into the table TABLE23
//
MimerCommand command = new MimerCommand("INSERT INTO TABLE23 VALUES('123',10)", connection);
command.ExecuteNonQuery();
} finally {
if (connection.State != ConnectionState.Closed) {
connection.Close();
}
}