From 5e3842dfefd7abce6abf12280a25f718ab4e98fd Mon Sep 17 00:00:00 2001 From: Cerdic <cedric@yterium.com> Date: Mon, 28 Mar 2011 21:42:03 +0000 Subject: [PATCH] #1894 : permettre d'envoyer une valeur null pour un champ dans sql_updateq/sql_insertq, qui sera traduite en NULL SQL. + 2 coquilles autour de la propagation du $type dans les quote --- ecrire/req/mysql.php | 3 ++- ecrire/req/pg.php | 5 +++-- ecrire/req/sqlite_generique.php | 5 +++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ecrire/req/mysql.php b/ecrire/req/mysql.php index 6e73f0238d..c1485d44c9 100644 --- a/ecrire/req/mysql.php +++ b/ecrire/req/mysql.php @@ -734,7 +734,7 @@ function spip_mysql_quote($v, $type='') { return spip_mysql_cite($v,$type); // si c'est un tableau, le parcourir en propageant le type foreach($v as $k=>$r) - $v[$k] = spip_mysql_quote($r, $type=''); + $v[$k] = spip_mysql_quote($r, $type); return $v; } // si on ne connait pas le type, s'en remettre a _q : @@ -792,6 +792,7 @@ function calcul_mysql_in($val, $valeurs, $not='') { // http://doc.spip.org/@spip_mysql_cite function spip_mysql_cite($v, $type) { + if(is_null($v)) return 'NULL'; // null php se traduit en NULL SQL if (sql_test_date($type) AND preg_match('/^\w+\(/', $v)) return $v; if (sql_test_int($type)) { diff --git a/ecrire/req/pg.php b/ecrire/req/pg.php index 4ce170fc28..39dbed192f 100644 --- a/ecrire/req/pg.php +++ b/ecrire/req/pg.php @@ -978,8 +978,9 @@ function spip_pg_sequence($table) // Dans le cas d'un champ date, pas d'apostrophe, c'est une syntaxe ad hoc // http://doc.spip.org/@spip_pg_cite -function spip_pg_cite($v, $t) -{ +function spip_pg_cite($v, $t){ + if(is_null($v)) return 'NULL'; // null php se traduit en NULL SQL + if (sql_test_date($t)) { if (strpos("0123456789", $v[0]) === false) return spip_pg_frommysql($v); diff --git a/ecrire/req/sqlite_generique.php b/ecrire/req/sqlite_generique.php index 0942b670ad..5a467134c5 100644 --- a/ecrire/req/sqlite_generique.php +++ b/ecrire/req/sqlite_generique.php @@ -1285,6 +1285,8 @@ function _sqlite_link($serveur = '', $recharger = false){ * @return number */ function _sqlite_calculer_cite($v, $type){ + if(is_null($v)) return 'NULL'; // null php se traduit en NULL SQL + if (sql_test_date($type) AND preg_match('/^\w+\(/', $v)) return $v; if (sql_test_int($type)){ @@ -1293,8 +1295,7 @@ function _sqlite_calculer_cite($v, $type){ if (ctype_xdigit(substr($v, 2)) AND strncmp($v, '0x', 2)==0) return hexdec(substr($v, 2)); } - //else return ("'" . spip_sqlite_quote($v) . "'"); - return (spip_sqlite_quote($v)); + return spip_sqlite_quote($v,$type); } -- GitLab