Wed
28
Dec '05
with Microsoft SQL Server we can list all the database names with System Procedures
sp_databases
or
EXEC sp_helpdb
And in MySQL, its much more simple :
SHOW DATABASES;

Leave a passing comment »