2013-05-20 83 views

回答

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(); 
    }