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:
parent
5c6eaa7921
commit
d3c868c640
1 changed files with 1 additions and 1 deletions
2
dbdimp.c
2
dbdimp.c
|
@ -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")
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue