well, I actually gave up on pods. I think it is a terrific plug-in but not really mature enough in terms of support. I really tried to use their most basic example and couldn't get the features to work. As with most plug-in support, they are too busy to respond to individual requests.
I decided to go with exec-php and just code my own php/mysql in the page.
My only real sources of help were the wpdb codex and the exec-php plugin documentation.
My wp page consisted of
1) defining the $wpdb as a global (took me a while to figure that out)
2) defining my html form using method="POST"
3) about 20 iterations of trying to construct the SQL syntax for a dynamic where clause
4) retrieving the results and outputting an html table
This snippet helped a great deal:
$fivesdrafts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts
WHERE post_status = 'draft' AND post_author = 5");
foreach ($fivesdrafts as $fivesdraft) {
echo $fivesdraft->post_title;
}
I would paste the whole thing here but I'm not entirely sure how secure this all is and am only beginning to follow some of the information on securing WP and exec-php.