-4
VB 2010で接続文字列を作成しましたが、理解しやすいですが、内部で何が起こっているのかわかりません。誰かを喜ばせることができますこのコードを説明できますか?
private: System::Void button1_Click(System::Object^ sender,System::EventArgs^ e) {
MySqlConnection^ con =gcnew MySqlConnection("server=localhost;port=3306;userid=root;password=themohal123;database=myfirstdb");
try
{
con->Open();
MessageBox::Show("Connection Successful");
con->Close();
}
catch (Exception^ ex)
{
MessageBox::Show("Connection Not Successful"+ ex);
}
}
まずはVBコードではありません – Plutonix