mirror of
https://github.com/moparisthebest/PhoneGap-SQLitePlugin-Android
synced 2024-11-11 19:45:03 -05:00
46 lines
1.5 KiB
Objective-C
Executable File
46 lines
1.5 KiB
Objective-C
Executable File
/*
|
|
* Copyright (C) 2011 Davide Bertola
|
|
*
|
|
* Authors:
|
|
* Davide Bertola <dade@dadeb.it>
|
|
* Joe Noon <joenoon@gmail.com>
|
|
*
|
|
* This library is available under the terms of the MIT License (2008).
|
|
* See http://opensource.org/licenses/alphabetical for full text.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "sqlite3.h"
|
|
|
|
#ifdef PHONEGAP_FRAMEWORK
|
|
#import <PhoneGap/PGPlugin.h>
|
|
#import <PhoneGap/JSON.h>
|
|
#import <PhoneGap/PhoneGapDelegate.h>
|
|
#import <PhoneGap/File.h>
|
|
#else
|
|
#import "PGPlugin.h"
|
|
#import "JSON.h"
|
|
#import "PhoneGapDelegate.h"
|
|
#import "File.h"
|
|
#endif
|
|
|
|
@interface SQLitePlugin : PGPlugin {
|
|
NSMutableDictionary *openDBs;
|
|
}
|
|
|
|
@property (nonatomic, copy) NSMutableDictionary *openDBs;
|
|
@property (nonatomic, retain) NSString *appDocsPath;
|
|
|
|
-(void) open:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) backgroundExecuteSqlBatch:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) backgroundExecuteSql:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) executeSqlBatch:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) executeSql:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) _executeSqlBatch:(NSMutableDictionary*)options;
|
|
-(void) _executeSql:(NSMutableDictionary*)options;
|
|
-(void) close: (NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
-(void) respond: (id)cb withString:(NSString *)str withType:(NSString *)type;
|
|
-(id) getDBPath:(id)dbFile;
|
|
|
|
@end
|