-1

bindValue が空の場合、動的に構築されたクエリの実行に問題があります

  • bindValue が定義されていて使用されていない場合、クエリは結果を返しません。すべての検索フィールドに値が入力されている限り、クエリは機能します。
  • bindValue と bindParam の両方を試しました。
  • その意図は、検索フォームに入力されたフィールドのみを照会することです。
  • ローカルの MySQL ログで、すべての bindValue 検索用語が使用されない限り、ステートメントは適切に準備されますが、実行されないことに気付きました。

mysql.log は次のとおりです (3 つのフィールドすべてが入力されています)。

142 Connect root@localhost on drawings03
142 Prepare SELECT * FROM draw WHERE (`LocationNumber` = ?  && `DrawingNumber` = ?  && `DrawingDate` >= ? )
142 Execute SELECT * FROM draw WHERE (`LocationNumber` = '525'  && `DrawingNumber` = '101'  && `DrawingDate` >= '1950' )
142 Close stmt  
142 Quit

ここにphpの一部があります:

<?php
  //grabs variables from a search form
$searchTerms['locnum'] = $_GET['locnum'];
$searchTerms['drawnum'] = $_GET['drawnum'];
$searchTerms['projtitle'] = $_GET['projtitle'];
$searchTerms['shttitle'] = $_GET['shttitle'];
$searchTerms['shtnum'] = $_GET['shtnum'];
$searchTerms['discp'] = $_GET['discp'];
$searchTerms['drawdate'] = $_GET['drawdate'];

//Loops through the array
foreach ($searchTerms as $field => $value) {
   if ($value != null && $value != '' && $value != ' ' ) {
// Based on the key name in the array, decide which 
// SQL statement to add to the array to be constructed
      switch ($field) {
         case 'locnum':
            $where[] = "`LocationNumber` = :locnum ";
            break;
         case 'drawnum':
            $where[] = "`DrawingNumber` = :drawnum ";
            break;
         case 'drawdate':
            $where[] = "`DrawingDate` >= :drawdate ";
            break;         
      }              
   }             
}

// Combine WHERE statements into one with && separating each one
$whereSQL = implode(' && ', $where);  
$stmt = $db->prepare("SELECT * FROM draw WHERE (".$whereSQL.")");
$stmt->bindValue(':locnum', $locnum, PDO::PARAM_INT);
$stmt->bindValue(':drawnum', $drawnum, PDO::PARAM_INT);
$stmt->bindValue(':drawdate', $drawdate, PDO::PARAM_STR);

$stmt->execute();
$rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
$row_count = $stmt->rowCount();
echo "<div class='span12'><b>".$row_count." results"."</b><br>Click <b>to sort</b>.  &nbsp; Right-click link and save-as <b>to save a PDF</b>.</div>";
foreach ($rows as $value) {
   echo $value['LocationNumber']." - ".$value['DrawingNumber']." - ".substr($value['DrawingDate'],0,4)."<br>";
}
?>
4

1 に答える 1

0

これを追加して、空ではないフィールドに $stmt->bindValue を追加するだけで、この問題を解決できました。

foreach ($searchTerms as $field => $value) {
    if ($value != null && $value != '' && $value != ' ' ) {
        // Based on the key name in the array, decide which SQL statement to add to the array to be constructed
        switch ($field) {
            case 'locnum':
                            $stmt->bindValue(':locnum', $locnum, PDO::PARAM_INT);
                            break;
            case 'drawnum':
                            $stmt->bindValue(':drawnum', $drawnum, PDO::PARAM_INT);
                            break;
            case 'drawdate':
                            $stmt->bindValue(':drawdate', $drawdate, PDO::PARAM_STR);
                            break;         
        }              
    }             
}
于 2013-06-27T14:39:44.603 に答える