ObjSQLite3  Diff

Differences From Artifact [497f2f5c61]:

To Artifact [be4fe62381]:


24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

#include <sqlite3.h>

OF_ASSUME_NONNULL_BEGIN

@class SL3Connection;

@interface SL3Statement: OFObject
{
#ifdef SL3_PUBLIC_IVARS
@public
#endif
	SL3Connection *_connection;
	sqlite3_stmt *_stmt;
}







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

#include <sqlite3.h>

OF_ASSUME_NONNULL_BEGIN

@class SL3Connection;

@interface SL3PreparedStatement: OFObject
{
#ifdef SL3_PUBLIC_IVARS
@public
#endif
	SL3Connection *_connection;
	sqlite3_stmt *_stmt;
}