The method doesn't open the table of the database.
After calling this method, the Execute and ExecuteSQL methods can be called, the other methods of this object can't be called (only after opening the table for example by the Open method).
After connection of the database the Execute/ExecuteSQL methods that are using the SQL language, can be called.
var oDb = pMe.Pm("/Database0");
var sSQL = "........";
oDb.Connect();
//the database is connected. The Execute/ExecuteSQL methods can be called.
oDb.ExecuteSQL(sSQL);
//...
//open the table. All other methods can be called.
oDb.Open();
//...
//close the table and disconnect the database
oDb.Close();