PDO sorunu yürütmek

1 Cevap php

Ben bir sorunla karşılaştılar ben bu fonksiyonu çalıştırarak tüm satırları seçmek istiyorum.:

 public function executeQuery($query,$fetch_mode=null) {
        $rs = null;
        if ($stmt = $this->getConnection()->prepare($query)) {
            if ($this->executePreparedStatement($stmt, $rs,$fetch_mode)) {
                return $rs;
            }
        } else {
            throw new DBError($this->getConnection()->errorInfo());
        }
    }
private function executePreparedStatement($stmt, & $row = null,$fetch_mode=null) {
        $boReturn = false;
        if($fetch_mode==null)   $fetch_mode=$this->fetch_mode;
        if ($stmt->execute()) {

            if ($row = $stmt->fetch($fetch_mode)) {
                $boReturn = true;
            } else {
                $boReturn = false;
            }
        } else {
            $boReturn = false;
        }
        return $boReturn;
    }

Ama benim indeks sayfasından çağırdığınızda:

$objDB=new DB();

  $objDB->connect();

  //   executeQuery returns an array
  $result=$objDB->executeQuery("SELECT * FROM admin");
   var_dump($result);

Yalnızca tek bir satır yerine tüm satır alınır.

Ben de kullanarak modunu ayarlayın:

$result=$objDB->executeQuery("SELECT * FROM admin",PDO::FETCH_ASSOC);

Ama hala çalışmıyor.

1 Cevap

Getirme yöntemi, yalnızca geçerli satır döndürür ve sonraki satıra satır işaretçisi ayarlar. Eğer kullanabileceğiniz bir PHP dizideki tüm verileri okumak için fetchAll().

Bu PHP'nin copy-on-write mekanizması ile uğraşamaz ve sık sık sorun yaratan Ek olarak iade-by-başvuru PHP iyi bir fikir değil.

Yani böyle bir oyure kod bir şey yazmak isterim:

public function executeQuery($query,$fetch_mode=null) {
    if ($stmt = $this->getConnection()->prepare($query)) {
        $ret = $this->executePreparedStatement($stmt, $fetch_mode);
        return $ret;
    }
    throw new DBError($this->getConnection()->errorInfo());
}
private function executePreparedStatement($stmt, $fetch_mode=null) {
    if($fetch_mode==null)   $fetch_mode=$this->fetch_mode;

    if ($stmt->execute()) {
        if ($rows = $stmt->fetchAll($fetch_mode)) {
            return $rows;
        }
    }
    return false;
}