Append;
The Append method adds a record into the end of the table and starts its editing.
Sub Main;
Var
MB: IMetabase;
DSInst: IDatasetInstance;
Cache: ICachedDataset;
Begin
MB:=MetabaseClass.Active;
DSInst:=MB.ItemById("Table_1").Open(Null) As IDatasetInstance;
Cache:=DSInst.OpenCached;
Cache.Append;
Cache.Post;
End Sub Main;
After executing the example, record is added into the end of the table.
See also: