Overview
Comment: | SL3Connection: Add -[executeStatement:] |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
02992f86b3c02a7784a12c4b9a7ffa7b |
User & Date: | js on 2020-10-01 23:13:36 |
Other Links: | manifest | tags |
Context
2020-10-01
| ||
23:20 | Add initial tests check-in: bda6d49813 user: js tags: trunk | |
23:13 | SL3Connection: Add -[executeStatement:] check-in: 02992f86b3 user: js tags: trunk | |
21:59 | Update .fossil-settings/ignore-glob check-in: eb4ede18a3 user: js tags: trunk | |
Changes
Modified src/SL3Connection.h from [492f96fbf6] to [272c3ee93b].
︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + + | OF_ASSUME_NONNULL_BEGIN @interface SL3Connection: OFObject { #ifdef SL3_PUBLIC_IVARS @public #endif |
Modified src/SL3Connection.m from [05cf9280fa] to [e8eef4d654].
︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #import "SL3Connection.h" #import "SL3PreparedStatement.h" #import "SL3ExecuteStatementFailedException.h" #import "SL3OpenFailedException.h" @implementation SL3Connection + (instancetype)connectionWithPath: (OFString *)path { return [[[self alloc] initWithPath: path] autorelease]; } |
︙ | |||
46 47 48 49 50 51 52 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | - + + - + + + + + + + + + + + | - (instancetype)initWithPath: (OFString *)path flags: (int)flags { self = [super init]; @try { |
Modified src/SL3PreparedStatement.m from [a10b9cc893] to [a1e7e17bb0].
︙ | |||
38 39 40 41 42 43 44 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | - + | @implementation SL3PreparedStatement - (instancetype)sl3_initWithConnection: (SL3Connection *)connection SQLStatement: (OFConstantString *)SQLStatement { self = [super init]; @try { |
︙ |
Modified src/exceptions/SL3ExecuteStatementFailedException.h from [679d299e03] to [3b1dd61d6a].
︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - - - - - + | @interface SL3ExecuteStatementFailedException: SL3Exception { SL3PreparedStatement *_statement; } @property (readonly, nonatomic) SL3PreparedStatement *statement; |
Modified src/exceptions/SL3ExecuteStatementFailedException.m from [0ac8be2389] to [712d963f2b].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - - - - - - - - - - - - | */ #import "SL3ExecuteStatementFailedException.h" @implementation SL3ExecuteStatementFailedException @synthesize statement = _statement; |
︙ |