I'm attempting to use a spreadsheet like a mySQL table and I want to
be able to grab certain fields in a similar way that I'd grab it like:
$myrow['first_name']

obviously it's not the same, but I'd love to query and grab 1 row and
then quickly just grab a specific column's cell data.

this is the closest thing I have:
if ($customEntry->getColumnName()=="firstname") {
        $firstname = $customEntry->getText();
}

this is cumbersome though because it means I have to do that for EACH
of my variables.

is there a quick and easy way for me to access it?

any better way to do this would be greatly appreciated! thanks!

jake
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Docs Data APIs" group.
To post to this group, send email to Google-Docs-Data-APIs@googlegroups.com
To unsubscribe from this group, send email to 
google-docs-data-apis+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to