PC に管理者としてログインしていますが、これが表示されます
ここに私のコードがあります:
string file = "C:\\Users\\owner\\Documents\\backup.sql";
using (MySqlConnection conn = new MySqlConnection(constring))
{
using (MySqlCommand cmd = new MySqlCommand())
{
using (MySqlBackup mb = new MySqlBackup(cmd))
{
try
{
cmd.Connection = conn;
conn.Open();
mb.ExportToFile(file);
conn.Close();
}catch(Exception ex){
MessageBox.Show(ex.Message);
}
}
}
}
PS: コードの一番上に既に接続文字列があります。