码迷,mamicode.com
首页 > 其他好文 > 详细

获取表名

时间:2019-06-09 13:16:25      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:dict   static   ==   tables   from   line   sel   table   rom   

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;

获取表名

标签:dict   static   ==   tables   from   line   sel   table   rom   

原文地址:https://www.cnblogs.com/xtwkh1973/p/10993099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!