bpat1434 wrote:I believe it is mysql_query() that is the only database attached item. Everything else relies upon the resource returned from mysql_query().
😉
So if I do the following:
$sql = "SELECT * FROM table";
$query = $db->doQuery($sql);
$numRows = mysql_num_rows($query);
$row = mysql_fetch_array($query);
Only 1 query is being executed?