// // iSalesDB+JKDB.h // iSales-NPD // // Created by Jack on 8/3/16. // Copyright © 2016 United Software Applications, Inc. All rights reserved. // #import "iSalesDB.h" typedef void(^queryBlock)(sqlite3_stmt *stmt,NSMutableDictionary *container,long *count); @interface iSalesDB (JKDB) + (NSDictionary *)jk_query:(NSString *)sql completion:(queryBlock)block; + (int)jk_execSql:(NSString *)sql withDatabase:(BOOL)database; @end