
OpenTable
ODBPPLib.IODBPP.OpenTable opens an already created table.void OpenTable ( uint tableId );
Parameters
| tableId | the table Id defining the table's handle. |
Return Values
Remarks
Example Use
- C#
public static uint FIRST_TABLE = 1;
private void button1_Click(object sender, EventArgs e)
try{
ODBPPLib.ODBPP odbpp = new ODBPPLib.ODBPP();
odbpp.OpenDatabase("C:\\My\\Database\\Control\\File.odc");
odbpp.BeginTransaction(odbpp.SHARED, 60000);
odbpp.OpenTable(FIRST_TABLE);
...
odbpp.EndTransaction();
}
catch (Exception e1)
{
MessageBox.Show(e1.Message);
}
}Also See
AddTable, CloseTable, CreateTable, RemoveTable, SetTableSchemaListen All
Comments (0)

