in reply to Database access on your site, or "Where the hell is mysql?"

The answer would appear to be: use SELECT statements to query the database and see if it contains what you expect it to (but perhaps I'm missing part of your requirements). You can issue these SELECTs the same way you issue your INSERTS (e.g. through a web front end) or else you can use a command line tool. If you don't have access to MySQL's native command line tool, you can try dbish, in the DBI::Shell distribution which provides a generic command line tool for all DBI accessible databases and can be installed by a non-root user in any directory.
  • Comment on Re: Database access on your site, or "Where the hell is mysql?"

Replies are listed 'Best First'.
Re^2: Database access on your site, or "Where the hell is mysql?"
by SkipHuffman (Monk) on Oct 01, 2005 at 17:18 UTC

    Yes, select statements are what I am using in the code itself, but for the debug portion, I want to see what my insert did. The way I usually do that is to use the mysql client and run the statement interactively.

    I will look at dbish, that might be exactly what I need.

    Skip