Start MySQL
Enter password: ******
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 8.0.19 MySQL Community Server - GPL

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.03 sec)
kodingwindow@kw:~/csharp$ 
C# program to create a database in MySQL
Program.cs
using MySql.Data.MySqlClient;
using System;
namespace Kodingwindow
{
    class Program
    {
        public static void Main(string[] args)
        {
            string dbname = "DB";
            MySqlConnection con = new MySqlConnection("server=localhost;user=root;port=3306;password=passwd");
            MySqlCommand cmd;
            try
            {
                con.Open();
                Console.WriteLine("Connection Established Successfully");
                cmd = new MySqlCommand("DROP DATABASE IF EXISTS " + dbname + "", con);
                cmd.ExecuteNonQuery();

                cmd = new MySqlCommand("CREATE DATABASE "+ dbname + "", con);
                cmd.ExecuteNonQuery();
                Console.WriteLine("Database Created");
                
                Console.WriteLine("\nList of MySQL Databases: ");
                cmd = new MySqlCommand("SHOW DATABASES", con);
                MySqlDataReader dr = cmd.ExecuteReader();
                while (dr.Read())
                {
                    Console.WriteLine(dr[0]);
                }
                dr.Close();
                con.Close();
                Console.WriteLine("\nConnection Released Successfully");
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
            Console.ReadKey();
        }
    }
}
Output
Connection Established Successfully
Database Created

List of MySQL Databases:
db
information_schema
mysql
performance_schema
sys

Connection Released Successfully
MySQL Instance
mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| db                 |
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set (0.00 sec)
Advertisement