Hey CScott -
After finishing my stored procedures I installed another MySQL data dump. This wiped out all my existing tables (except for the ones that phpMyIDE) makes, and recreated them. I tried to make sure that all the routines were retained.
Sorry mang, I have no idea what you just said or did there.
With the new data dump, i attempt to view my data objects. Using phpAdmin, I can see the tables and the data that they have.
For the routines, they show up in phpAdmin's list. However, if I click on the "structure" icon next to the name, all i see is the command 'drop' {my procedure name}. (I can't recall if phpAdmin used to let me see the structures of the routines.)
phpMyAdmin will not let you view stored code - you can, however, type "show create procedure mydb.procname" and it will get spit out like you had selected rows from a table. You should try that and see if you can see your procedures. You can also say "show procedure status where like '%'" to see all procedures in a certain database.
Using phpMyIDE, I can't get my MySQL database to show up under "information schema" on the far left. So, first I reran the testinstall.php. The output showed "OK" for everything. Then I ran the build2.php that you helped me to get running (this thread was about that event). The output created the tables that phpMyIDE uses. It also had output like this:
select "Built triggers";
select "All Done";
Query Executed
Store Result Failed
Error (1):
Store Result Failed
Error (1):
Store Result Succeeded
Built long_commands
Store Result Failed
...
Built triggers
Store Result Succeeded
All Done
Process Completed
However, I still can't get my database to show up under "Information Schema" after I click the refresh button.
Looks like a permissions problem. Is this on a new machine? Is phpMyIDE on the same machine? Are you pointing at it from a different machine? Way too many questions to just give you an answer.
I'd go back to the testinstall.php routine and see what it reports.