I\'m experiencing what appears to be a bug using a PDO statement to make multiple selects.
I\'m building a SQL query that has many SELECTs, and regardless of how ma
To avoid that PDOException just use columnCount:
PDOException
columnCount
while ($statment->columnCount()) { $rowset = $statment->fetchAll(PDO::FETCH_ASSOC); $statment->nextRowset(); }