Note that there are some explanatory texts on larger screens.

plurals
  1. POBest practices using PDO queries to display data
    primarykey
    data
    text
    <p>Updating existing queries from mysql_* calls to PDO calls. Have a lot of instances where data is extracted from a DB and then used in various display capacities. To keep it simple, let's say all you want to do is make a vertical list of one column returned from a query. That same concept could populate an on screen table column, a drop down list, what ever but let's just say all that is needed is to display one data cell per line on a screen using PHP. </p> <p>Using MySQL you could:</p> <pre><code>Include('./dbconnect.php);//assume it is set up with to include the correct DB $query = 'SELECT C1 FROM T1'; $result = mysql_query($query); mysql_close($dbconn);//assume $dbconn is correct from dbconnect.php // what ever amount of code between here and there but the connection is closed while($row = mysql_fetch_assoc($result)){ echo $row['C1']."&lt;br&gt;";//prints the results one data set per row } // what ever else you need to code after this </code></pre> <p>With PDO can you execute the query, save it as an array and close the connection neatly like the above example or do you have to wait until you run something like;</p> <pre><code>// The PDO connect, statement // what ever amount of code between here and there but with connection still open while($row = $stmt-&gt;(PDO::FETCH_ASSOC)){ echo($row['C1']."&lt;br&gt;"; } $dbconn = null; // finally close the connection after who knows how long // what ever else you need to code after this </code></pre> <p>Another way to ask this question might be to ask if all the PDO attributes get values if you execute the statement something like:</p> <pre><code>$result = $stmt-&gt;execute;// assume the connection and statement were properly set up </code></pre> <p>Could you then set the connection to null, closing it and at some point later in the code just use something like:</p> <pre><code>While($row = $result-&gt;(PDO::FETCH_ASSOC)){ // what ever } </code></pre> <p>And expect it to work?</p> <p>Thanks</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload