1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#ifndef SQLITE3_DATABASE_RUBY
#define SQLITE3_DATABASE_RUBY
#include <sqlite3_ruby.h>
/* bits in the `flags` field */
#define SQLITE3_RB_DATABASE_READONLY 0x01
#define SQLITE3_RB_DATABASE_DISCARDED 0x02
struct _sqlite3Ruby {
sqlite3 *db;
VALUE busy_handler;
int stmt_timeout;
struct timespec stmt_deadline;
rb_pid_t owner;
int flags;
};
typedef struct _sqlite3Ruby sqlite3Ruby;
typedef sqlite3Ruby *sqlite3RubyPtr;
void init_sqlite3_database();
void set_sqlite3_func_result(sqlite3_context *ctx, VALUE result);
sqlite3RubyPtr sqlite3_database_unwrap(VALUE database);
VALUE sqlite3val2rb(sqlite3_value *val);
#endif
|