How to list sql server databases in a combobox [closed]

0

How to list SQL Server databases in a combobox from a C # application

    
asked by anonymous 07.10.2014 / 18:48

1 answer

1

You can get the list of all databases through the command below:

SELECT * FROM sys.databases
    
07.10.2014 / 19:02