0
odbcを使用してmssql 2008データベースにクエリを行い、異常な動作を突き詰めました。PDOの日付バインディングが間違っています
次のコードが使用されている1000が期待されていたのに...
$datefrom = "2009-06-01";
$dateto = "2009-07-01";
$clientno = "01";
$sth = $db->prepare("select count(*) from tbl WHERE v_valid_from <= ? and valid_from <= ? and (v_invalid_from >= ?) and (valid_to >= ? or valid_to is null) and clientno = ?");
$sth->execute(array($datefrom, $datefrom, $dateto, $dateto, $clientno));
問合せは、80行を取得します。プロファイラで見ると、サーバは次のステートメントを実行し
:
select count(*) from tbl
WHERE v_valid_from <= '20090601 00:00:00.000' and valid_from <= '20090601 00:00:00.000' and
(v_invalid_from >= '20090701 00:00:00.000') and (valid_to >= '20090701 00:00:00.000' or valid_to is null) and clientno = '01'
私が入れたときに「 - 」日付で、クエリが正常に実行されます。
datetime-valueに特別なバインディングがないように思われるので、なぜこのようなことが起こるのだろうかと思います。
セッションの設定は、次のとおりです。
set quoted_identifier on
set arithabort off
set numeric_roundabort off
set ansi_warnings on
set ansi_padding on
set ansi_nulls on
set concat_null_yields_null on
set cursor_close_on_commit off
set implicit_transactions off
set language English
set dateformat ymd
set datefirst 1
set transaction isolation level read committed