iSalesDB+JKDB.h 438 B

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