// // PTDatabaseManager.h // Derived from: // // FMDatabase.h // FMDB( https://github.com/ccgus/fmdb ) // // Created by Peng Tao on 15/11/23. // // Licensed to Flying Meat Inc. under one or more contributor license agreements. // See the LICENSE file distributed with this work for the terms under // which Flying Meat Inc. licenses this file to you. #import #import "FLEXSQLResult.h" /// Conformers should automatically open and close the database @protocol FLEXDatabaseManager @required /// @return \c nil if the database couldn't be opened + (instancetype)managerForDatabase:(NSString *)path; /// @return a list of all table names - (NSArray *)queryAllTables; - (NSArray *)queryAllColumnsOfTable:(NSString *)tableName; - (NSArray *)queryAllDataInTable:(NSString *)tableName; @optional - (FLEXSQLResult *)executeStatement:(NSString *)SQLStatement; @end