The UserTablesMD object enables to manage user defined tables as follows:
- Add a user table.
- Retrieve a user table from the database by its TableName.
- Remove a user table.
- Save the object in XML format.
Source table: OUTB.
IMPORTANT: After creating a new user-defined table in .NET, you must release the object by executing the following line of code, where myObject is a reference to the UserTablesMD object:
System.Runtime.InteropServices.Marshal.ReleaseComObject(myObject);
Copy Code