const char *encoding;
int timeout;
dbi_result dbi_result;
/* initialize error stuff */
conn->error_number = 0;
timeout = 0;
}
sqlite3_busy_timeout(sqcon, timeout);
/* this is required to make SQLite work like other database engines
in that it returns the column information even if there are no
rows in a result set */
dbi_result = dbd_query(conn, "PRAGMA empty_result_callbacks=1");
return 0;