1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

DBD-SQLite: added/updated several prototypes

This commit is contained in:
Kenichi Ishigaki 2009-03-28 04:02:53 +00:00
parent 1673b29ce6
commit c680c036c5

View file

@ -74,8 +74,11 @@ struct imp_sth_st {
#define dbd_bind_ph sqlite_bind_ph
#define dbd_st_bind_col sqlite_bind_col
void sqlite_db_create_function(SV *dbh, const char *name, int argc, SV *func);
void sqlite_db_create_aggregate( SV *dbh, const char *name, int argc, SV *aggr );
void sqlite3_db_create_function(SV *dbh, const char *name, int argc, SV *func);
void sqlite3_db_create_aggregate( SV *dbh, const char *name, int argc, SV *aggr );
void sqlite_st_reset( SV *sth );
int sqlite_bind_col( SV *sth, imp_sth_t *imp_sth, SV *col, SV *ref, IV sql_type, SV *attribs );
int dbd_set_sqlite3_busy_timeout ( SV *dbh, int timeout );
#ifdef SvUTF8_on