コード例 #1
0
ファイル: dbprops.py プロジェクト: xguse/outspline
 def refresh_database_statistics(self):
     self.propgrid.SetPropertyValue("db.items",
                                    core_api.get_items_count(self.filename))
コード例 #2
0
ファイル: __init__.py プロジェクト: mikpim01/outspline
def print_db(filename):
    print('Items in {}: {}'.format(filename,
                                   core_api.get_items_count(filename)))
    for table in core_api.select_all_table_names(filename):
        print_table(filename, table[0])
コード例 #3
0
ファイル: __init__.py プロジェクト: kynikos/outspline
def print_db(filename):
    print('Items in {}: {}'.format(filename, core_api.get_items_count(filename))
                                                                               )
    for table in core_api.select_all_table_names(filename):
        print_table(filename, table[0])
コード例 #4
0
ファイル: dbprops.py プロジェクト: xguse/outspline
 def refresh_database_statistics(self):
     self.propgrid.SetPropertyValue("db.items",
                                 core_api.get_items_count(self.filename))