Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/fmdb/FMDatabase.h')
-rw-r--r--src/fmdb/FMDatabase.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/fmdb/FMDatabase.h b/src/fmdb/FMDatabase.h
index 44e9df7..2a4ead2 100644
--- a/src/fmdb/FMDatabase.h
+++ b/src/fmdb/FMDatabase.h
@@ -1123,7 +1123,7 @@ func executeUpdate(sql: String, values: [Any]?) throws -> Bool { }
+ (NSString*)sqliteLibVersion;
-/// The FMDB version number as a string in the form of @c "2.7.7" .
+/// The FMDB version number as a string in the form of @c "2.7.8" .
///
/// If you want to compare version number strings, you can use NSNumericSearch option:
///
@@ -1194,14 +1194,6 @@ NSAssert(rs, @"Error %@", [db lastErrorMessage]);
- (void)makeFunctionNamed:(NSString *)name maximumArguments:(int)count withBlock:(void (^)(void *context, int argc, void * _Nonnull * _Nonnull argv))block __deprecated_msg("Use makeFunctionNamed:arguments:block:");
-typedef NS_ENUM(int, SqliteValueType) {
- SqliteValueTypeInteger = 1,
- SqliteValueTypeFloat = 2,
- SqliteValueTypeText = 3,
- SqliteValueTypeBlob = 4,
- SqliteValueTypeNull = 5
-};
-
- (SqliteValueType)valueType:(void *)argv;
/**