?? sqlite.h
字號(hào):
//// TSSqlite.h// TestSqlite//// Created by Matteo Bertozzi on 11/22/08.// Copyright 2008 Matteo Bertozzi. All rights reserved.//#import <Foundation/Foundation.h>#import <sqlite3.h>@interface Sqlite : NSObject { NSInteger busyRetryTimeout; NSString *filePath; sqlite3 *_db;}@property (readwrite) NSInteger busyRetryTimeout;@property (readonly) NSString *filePath;+ (NSString *)createUuid;+ (NSString *)version;- (id)initWithFile:(NSString *)filePath;- (BOOL)open:(NSString *)filePath;- (void)close;- (NSInteger)errorCode;- (NSString *)errorMessage;- (NSArray *)executeQuery:(NSString *)sql, ...;- (NSArray *)executeQuery:(NSString *)sql arguments:(NSArray *)args;- (BOOL)executeNonQuery:(NSString *)sql, ...;- (BOOL)executeNonQuery:(NSString *)sql arguments:(NSArray *)args;- (BOOL)commit;- (BOOL)rollback;- (BOOL)beginTransaction;- (BOOL)beginDeferredTransaction;@end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -