Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8428925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:11:29+00:00 2026-06-10T05:11:29+00:00

testQuery() is the method I use to get all rows from table CATEGORIES public

  • 0

testQuery() is the method I use to get all rows from table CATEGORIES

public function __construct()
 {
 self::$tdb = Database::getConnection();
 }



 #mock query to pull results from db
 public function testQuery()
  {
       $queryAA = "SELECT cat_name, cat_description, cat_id FROM CATEGORIES";
       $stmtAA = self::$tdb->prepare($queryAA);


       if ($stmtAA->execute() == true)
        {
             print("Execution was successful");
             return $stmtAA->fetch(PDO::FETCH_ASSOC);   
        }
       else
        {
            print("Warning statment did not successfully execute");
        }
     }

I normally use fetchAll() but I was told to use fetch as it doesn’t take up as much memory.
But I am having trouble retrieving more than one row using fetch() and the code below.

$test = new test();
$results = $test->testQuery();


foreach ($results as $row)
 {
 print_r($row);
 }

It only fetches 1 row. So how do I retrieve and print multiple rows? Using iteration was mentioned before but I’m not sure to implement it. Any help would greatly be appreciated. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T05:11:31+00:00Added an answer on June 10, 2026 at 5:11 am

    You could simply return the statement object.
    Or if you want to encapsulate it (so that it can only be used to fetch the data) use the SPL’s IteratorIterator

    return new IteratorIterator($stmtAA);
    

    then you can use

    foreach( testQuery() as $row) { ... }
    

    in your script.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I have an IQueryable<T> (generic) I can use the Take method to return
I have a table (SQL 2000) with over 10,000,000 records. Records get added at
How can I get ID of last inserted row from SQL Server by PyQt4.QtSql
Hi all I'm using Google Directions API and the data returned from a test
How can I use a table variable while executing a command string? DECLARE @FileIDs
I have a WCF service that accepts requests from JQuery. Currently, I can access
I am working on Java. I am calling a GET url on my own
I testing setting up a web logic server which can use an Oracle AQ
I am looking for a trick in newer dotnets where I can use inline
I'm having trouble calling methods from an included module inside a resque worker. In

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.