使用しているSQLバージョンをWebページに単純に印刷しようとしています。これは先生から提供されたコードです。サーバーとデータベースに入れました。DBユーザー名を見つける方法がわかりません。パスワード。
// add here your connection details
String connectionString = "SERVER=127.0.0.1; DATABASE=dblogin;"
+ "UID=YOUR_DB_USERNAME; PASSWORD='';";
// create and open a connection to the database
MySqlConnection connection = new MySqlConnection(connectionString);
connection.Open();
// print the MySQL version in a console
ReturnError.Text = ("MySQL version: " + connection.ServerVersion);
// this line will prevent the console from closing immediately
// to close the console just press any key