0

我需要做一份关于虚拟公司的工作。所以我正在为表格收藏而苦苦挣扎。有没有办法获取表集合中的表列表?

4

1 回答 1

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();
    }
于 2013-05-21T07:12:54.817 回答