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

fixed warn params

This commit is contained in:
Kenichi Ishigaki 2012-04-27 05:20:00 +00:00
parent 5c6eaa7921
commit d3c868c640

View file

@ -712,7 +712,7 @@ sqlite_st_execute(SV *sth, imp_sth_t *imp_sth)
if (DBIc_has(imp_dbh, DBIcf_PrintWarn))
warn(
"datatype mismatch: bind param (%d) %s as %s",
i, sql_type, SvPV_nolen_undef_ok(value),
i, SvPV_nolen_undef_ok(value),
(sql_type == SQLITE_INTEGER ? "integer" : "float")
);
}