Don't use LIKE for numbers in SQLite (bug #3420408)

This commit is contained in:
Jakub Vrana 2011-12-22 00:32:42 -08:00
parent 27b5e46a45
commit 3c5c08e793
2 changed files with 2 additions and 2 deletions

View file

@ -337,7 +337,7 @@ function where($where) {
$return = array();
foreach ((array) $where["where"] as $key => $val) {
$return[] = idf_escape(bracket_escape($key, 1)) // 1 - back
. ((ereg('\\.', $val) || $jush == "mssql") && $jush != "pgsql" ? " LIKE " . exact_value(addcslashes($val, "%_\\")) : " = " . exact_value($val)) // LIKE because of floats, but slow with ints, in MS SQL because of text
. (($jush == "sql" && ereg('\\.', $val)) || $jush == "mssql" ? " LIKE " . exact_value(addcslashes($val, "%_\\")) : " = " . exact_value($val)) // LIKE because of floats, but slow with ints, in MS SQL because of text
; //! enum and set
}
foreach ((array) $where["null"] as $key) {

View file

@ -9,7 +9,7 @@ Esc to cancel AJAX request
Ability to disable export (customization)
MySQL: set autocommit after connect
PostgreSQL: fix alter foreign key
PostgreSQL: don't use LIKE for numbers
PostgreSQL, SQLite: don't use LIKE for numbers (bug #3420408)
PostgreSQL over PDO: connect if the eponymous database does not exist (bug #3391619)
Boolean search (Editor)
Persian translation