获取表名

1、Use Dictionary
static void findTables(Args _args)
{
Dictionary dictionary;
TableId tableId;
tableName tableName;
;
dictionary = new Dictionary();
tableId = dictionary.tableNext(0);
tableName = dictionary.tableName(tableId);
while (tableId)
{
info(strfmt("%1 - %2",int2str(tableId), tableName));
tableId = dictionary.tableNext(tableId);
tableName = dictionary.tableName(tableId);
}
}
2、Use SqlDictionary
SQLDictionary dictTable;
while select * from dictTable where dictTable.fieldId == 0
{
print dicttable.name, ' ', dicttable.tabId;
}
pause;
posted @ 2019-06-09 12:04  学习是进步的阶梯  阅读(231)  评论(0编辑  收藏  举报