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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fmdb/FMDatabase.h b/src/fmdb/FMDatabase.h
index 35a3e90..472def9 100644
--- a/src/fmdb/FMDatabase.h
+++ b/src/fmdb/FMDatabase.h
@@ -677,6 +677,12 @@ typedef NS_ENUM(int, FMDBCheckpointMode) {
// Documentation forthcoming.
- (FMResultSet * _Nullable)executeQuery:(NSString *)sql withVAList:(va_list)args;
+/// Prepare SQL statement.
+///
+/// @param sql SQL statement to prepare, generally with `?` placeholders.
+
+- (FMResultSet *)prepare:(NSString *)sql;
+
///-------------------
/// @name Transactions
///-------------------