Overview
Comment: | Add SL3Statement |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
cc03d24ff3ef295e0a9769b20587ac48 |
User & Date: | js 2020-09-01 01:43:07 |
Context
2020-09-14
| ||
23:40 | Add files I forgot to add in the last checkin check-in: 04c7dfdd12 user: js tags: trunk | |
2020-09-01
| ||
01:43 | Add SL3Statement check-in: cc03d24ff3 user: js tags: trunk | |
2020-08-31
| ||
22:19 | Add SL3OpenFailedException check-in: 26a83e91f0 user: js tags: trunk | |
Changes
Changes to src/Makefile.
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | - + + - + | include ../extra.mk SUBDIRS = exceptions SHARED_LIB = ${OBJSQLITE3_SHARED_LIB} STATIC_LIB = ${OBJSQLITE3_STATIC_LIB} FRAMEWORK = ${OBJSQLITE3_FRAMEWORK} LIB_MAJOR = 0 LIB_MINOR = 0 |
Changes to src/SL3Connection.h.
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + + - + | #include <sqlite3.h> OF_ASSUME_NONNULL_BEGIN @interface SL3Connection: OFObject { #ifdef SL3_PUBLIC_IVARS @public #endif |
︙ |
Changes to src/SL3Connection.m.
︙ | |||
34 35 36 37 38 39 40 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | - + - - - + + - - - + + - + | - (instancetype)initWithPath: (OFString *)path flags: (int)flags { self = [super init]; @try { |
Added src/SL3Statement+Private.h.
|
Added src/SL3Statement.h.
|
Added src/SL3Statement.m.