From c680c036c5d6f4705ae6a2f0264b0c4946faca51 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sat, 28 Mar 2009 04:02:53 +0000 Subject: [PATCH] DBD-SQLite: added/updated several prototypes --- dbdimp.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dbdimp.h b/dbdimp.h index bbd0de3..80dd458 100644 --- a/dbdimp.h +++ b/dbdimp.h @@ -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