In MySql 4.0.x, there are no view "information_schema".
In this case, how can I list the tables in the database using select query?
without using MySql terminal command such as "show tables"
Asked
Active
Viewed 677 times
0
-
1SHOW TABLES wont work? – Mehdi Dec 16 '13 at 06:01
-
http://dev.mysql.com/doc/refman/4.1/en/show-tables.html – parvus Dec 16 '13 at 06:13
1 Answers
0
I do not think there is any way in MySql 4.0. You have to upgrade your MySql to 5.0 to get "information_schema" or you can use "show tables", but that you do not want to use.
-
It seems impossible without using informatino_schema, so I think you are right. – daehee Dec 16 '13 at 07:05