sql >> データベース >  >> RDS >> Mysql

MySqlサーバーのデータベースを表示する

    string myConnectionString = "SERVER=localhost;UID='root';" + "PASSWORD='root';";
    MySqlConnection connection = new MySqlConnection(myConnectionString);
    MySqlCommand command = connection.CreateCommand();
    command.CommandText = "SHOW DATABASES;";
    MySqlDataReader Reader;
    connection.Open();
    Reader = command.ExecuteReader();
    while (Reader.Read())
    {
      string row = "";
      for (int i = 0; i < Reader.FieldCount; i++)
           row += Reader.GetValue(i).ToString() + ", ";
           comboBox1.Items.Add(row);
    }
    connection.Close();
    


    1. Oracleから各グループの最新の行を選択します

    2. SQL Serverで参照エンティティを検索します:sys.dm_sql_referencing_entities()

    3. MySQLバイナリとchar文字セットバイナリ

    4. SQLServerテーブルにデフォルト値の列を挿入するためのSQLDEFAULT制約