When I run my C# windows form application that contains Crystal Report. It's asking me to enter the credential for the MySQL db every time. Even though I entered the correct user name and password. it is saying my user name or password is wrong. I have checked the credential many times and entered password is correct. Code :
private void cmdPrintReport\_Click(object sender, EventArgs e)
{
CrystalReport\_Quotation1.SetDatabaseLogon("DB\_USER\_AFDR", "1237894560");
crvQuotation.ReportSource = CrystalReport\_Quotation1;
crvQuotation.Refresh();
}