Description:
i call procedure for mysql at linux OS from my MVC web apps.
my code :
public int doQuery()
{
//this.sqlConnection.Open();
int ret = this.queryCommand.ExecuteNonQuery();
//this.sqlConnection.Close();
return ret;
}
and my query :
call archive_ready('ALL',7,2012)
if i run it from linux bash its normal, i'll try with toad mysql its normal too.. but when i run it from my apps its got error at int ret = this.queryCommand.ExecuteNonQuery();
can u tell me why? thanks
How to repeat:
repeat what?
Description: i call procedure for mysql at linux OS from my MVC web apps. my code : public int doQuery() { //this.sqlConnection.Open(); int ret = this.queryCommand.ExecuteNonQuery(); //this.sqlConnection.Close(); return ret; } and my query : call archive_ready('ALL',7,2012) if i run it from linux bash its normal, i'll try with toad mysql its normal too.. but when i run it from my apps its got error at int ret = this.queryCommand.ExecuteNonQuery(); can u tell me why? thanks How to repeat: repeat what?