1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00

more binding types (all strings in SQLite)

This commit is contained in:
J. King 2016-10-05 22:45:49 -04:00
parent 7a66b28310
commit 84675bc404

View file

@ -19,6 +19,11 @@ class StatementSQLite3 implements Statement {
case "real":
case "numeric":
$this->types[] = \SQLITE3_FLOAT; break;
case "date":
case "time":
case "datetime":
case "timestamp":
$this->types[] = \SQLITE3_TEXT; break;
case "blob":
case "bin":
case "binary":
@ -26,7 +31,6 @@ class StatementSQLite3 implements Statement {
case "text":
case "string":
case "str":
$this->types[] = \SQLITE3_TEXT; break;
default:
$this->types[] = \SQLITE3_TEXT; break;
}