You must Sign In to post a response.
  • Category: ASP.NET

    Select MySql Database using c# in asp.net

    hello,

    I made one asp.net application that connect MySql database using C#. I have created database name test in MySql Workbench.

    I want a MySql query that select all user made databases not a system databases.


    I am working with MSSQL, beginner in MySQL.
  • #769577
    Hi
    You can use this command for list all databases in MySQL Database



    SHOW DATABASES;

    SELECT schema_name
    FROM information_schema.schemata;



    Name : Dotnet Developer-2015
    Email Id : kumaraspcode2009@gmail.com

    'Not by might nor by power, but by my Spirit,' says the LORD Almighty.


  • Sign In to post your comments