19 lines
352 B
Objective-C
19 lines
352 B
Objective-C
//
|
|
// IfishDBHelper.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/1/26.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "FMDatabase.h"
|
|
#import "FMDatabaseQueue.h"
|
|
@interface IfishDBHelper : NSObject
|
|
+(FMDatabaseQueue*)getDatabaseQueue;
|
|
+(BOOL)isTableOK:(NSString*)tableName withDB:(FMDatabase*)db;
|
|
|
|
@end
|
|
|
|
|