我需要做一些关于虚拟公司的工作。所以我正在努力与表集合。有没有办法获取表集合中的表列表?
答案 0 :(得分:1)
您可以使用SysDictTableCollection来获取表集合中的表名称,如下所示:
SysDictTableCollection tableCollection;
TableName tableName;
;
//replace Batch with your table collection name
tableCollection = new SysDictTableCollection("Batch");
tableName = tableCollection.nextTable();
while (tableName)
{
info(tableName);
tableName = tableCollection.nextTable();
}