21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
*/
#import "SL3Connection.h"
#import "SL3OpenFailedException.h"
@implementation SL3Connection
+ (instancetype)connectionWithPath: (OFString *)path
flags: (int)flags
{
return [[[self alloc] initWithPath: path
flags: flags] autorelease];
}
- (instancetype)initWithPath: (OFString *)path
flags: (int)flags
{
self = [super init];
@try {
|
>
>
>
>
>
>
>
>
>
>
>
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
*/
#import "SL3Connection.h"
#import "SL3OpenFailedException.h"
@implementation SL3Connection
+ (instancetype)connectionWithPath: (OFString *)path
{
return [[[self alloc] initWithPath: path] autorelease];
}
+ (instancetype)connectionWithPath: (OFString *)path
flags: (int)flags
{
return [[[self alloc] initWithPath: path
flags: flags] autorelease];
}
- (instancetype)initWithPath: (OFString *)path
{
return [self initWithPath: path
flags: SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE];
}
- (instancetype)initWithPath: (OFString *)path
flags: (int)flags
{
self = [super init];
@try {
|