0% found this document useful (0 votes)
56 views1 page

Dump Data

This method dumps all field names and data from all rows of the current dataset to the screen. It is primarily used for debugging purposes. For example, you can run a SQL select statement and then use DumpData to output all the results for inspection.

Uploaded by

Amutha Arun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views1 page

Dump Data

This method dumps all field names and data from all rows of the current dataset to the screen. It is primarily used for debugging purposes. For example, you can run a SQL select statement and then use DumpData to output all the results for inspection.

Uploaded by

Amutha Arun
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

DumpData

Dump to the screen all field names and the data in all rows of the current dataset. This is used primarily for
debugging.

Example:
$db->Sql("Select * FROM foo");
$db->DumpData;

You might also like