Method: Amalgalite::SQLite3::Database.open
- Defined in:
- ext/amalgalite/c/amalgalite_database.c
.open(*args) ⇒ Object
call-seq:
Amalgalite::SQLite3::Database.open( filename, flags = READWRITE | CREATE ) -> Database
Create a new SQLite2 database with a UTF-8 encoding.
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 52 53 54 55 56 |
# File 'ext/amalgalite/c/amalgalite_database.c', line 21
VALUE am_sqlite3_database_open(int argc, VALUE *argv, VALUE class)
{
VALUE self = am_sqlite3_database_alloc(class);
VALUE rFlags;
VALUE rFilename;
int flags = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE;
char* filename;
int rc;
am_sqlite3* am_db;
/* at least a filename argument is required */
rb_scan_args( argc, argv, "11", &rFilename, &rFlags );
/* convert flags to the sqlite version */
flags = ( Qnil == rFlags ) ? flags : FIX2INT(rFlags);
filename = StringValuePtr(rFilename);
/* extract the sqlite3 wrapper struct */
Data_Get_Struct(self, am_sqlite3, am_db);
/* open the sqlite3 database */
rc = sqlite3_open_v2( filename, &(am_db->db), flags, 0);
if ( SQLITE_OK != rc ) {
rb_raise(eAS_Error, "Failure to open database %s : [SQLITE_ERROR %d] : %s\n",
filename, rc, sqlite3_errmsg(am_db->db));
}
/* by default turn on the extended result codes */
rc = sqlite3_extended_result_codes( am_db->db, 1);
if ( SQLITE_OK != rc ) {
rb_raise(eAS_Error, "Failure to set extended result codes %s : [SQLITE_ERROR %d] : %s\n",
filename, rc, sqlite3_errmsg(am_db->db));
}
return self;
}
|