|
|
@@ -752,6 +752,10 @@ - (FMResultSet *)executeQuery:(NSString *)sql withArgumentsInArray:(NSArray *)ar
|
|
|
return [self executeQuery:sql withArgumentsInArray:arguments orDictionary:nil orVAList:nil];
|
|
|
}
|
|
|
|
|
|
+- (FMResultSet *)executeQuery:(NSString*)sql withVAList:(va_list)args {
|
|
|
+ return [self executeQuery:sql withArgumentsInArray:nil orDictionary:nil orVAList:args];
|
|
|
+}
|
|
|
+
|
|
|
- (BOOL)executeUpdate:(NSString*)sql error:(NSError**)outErr withArgumentsInArray:(NSArray*)arrayArgs orDictionary:(NSDictionary *)dictionaryArgs orVAList:(va_list)args {
|
|
|
|
|
|
if (![self databaseExists]) {
|
|
|
@@ -1003,6 +1007,10 @@ - (BOOL)executeUpdate:(NSString*)sql withParameterDictionary:(NSDictionary *)arg
|
|
|
return [self executeUpdate:sql error:nil withArgumentsInArray:nil orDictionary:arguments orVAList:nil];
|
|
|
}
|
|
|
|
|
|
+- (BOOL)executeUpdate:(NSString*)sql withVAList:(va_list)args {
|
|
|
+ return [self executeUpdate:sql error:nil withArgumentsInArray:nil orDictionary:nil orVAList:args];
|
|
|
+}
|
|
|
+
|
|
|
- (BOOL)executeUpdateWithFormat:(NSString*)format, ... {
|
|
|
va_list args;
|
|
|
va_start(args, format);
|