Mysql
 sql >> Database >  >> RDS >> Mysql

Come usare bind_result() invece di get_result() in php

Supponendo che tu non possa usare get_result() e vuoi una serie di dispositivi, potresti fare:

public function getAllDevices($user_id) {
    $stmt = $this->conn->prepare("SELECT device_id, device_name, device_info FROM devices WHERE  primary_owner_id = ?");
    $stmt->bind_param("i", $user_id);
    $stmt->execute();
    $stmt->bind_result($id, $name, $info);
    $devices = array();

    while($stmt->fetch()) {
        $tmp = array();
        $tmp["id"] = $id;
        $tmp["name"] = $name;
        $tmp["info"] = $info;
        array_push($devices, $tmp);
    }
    $stmt->close();
    return $devices;
}

Questo crea un array temporaneo e memorizza i dati da ogni riga al suo interno, quindi lo inserisce nell'array principale. Per quanto ne so, non puoi usare SELECT * in bind_result() . Invece, dovrai digitare fastidiosamente tutti i campi che desideri dopo SELECT