I am trying to mimic the output of show databases;
using java. I want to output something exactly or very similar to this:
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
| test |
+--------------------+
My first idea was to figure out the maximum length of all the databases names before I can start printing the output. However, I am not sure how I can do that.
I tried select max(length(show databases));
which is not valid syntax. I did find that I can use
all the tables and run select length(database());
to find the length of the name, but I believe that is not what mysql does to output the results.
Is there another approach to printing the output? Thanks!
SHOW DATABASES
is a standalone command and cannot be used as argument as you did it.
With this command you get the information you need:
SELECT MAX(LENGTH(SCHEMA_NAME)) FROM information_schema.schemata;
See also MySQL Documentation