Per ottenere l'elenco dei database, puoi utilizzare SHOW DATABASES
:
SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.01 sec)
Per ottenere il numero di versione del tuo server MySQL, puoi usare SELECT VERSION()
:
SELECT VERSION();
+-----------+
| VERSION() |
+-----------+
| 5.1.45 |
+-----------+
1 row in set (0.01 sec)
Per quanto riguarda la domanda sulla stringa di connessione, vorresti inserire un nome di database al posto del punto, come Database=test
.