Bug #65916 Fatal error encountered during command execution
Submitted: 17 Jul 2012 5:03 Modified: 17 Jul 2012 9:26
Reporter: vincent arc Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Errors Severity:S5 (Performance)
Version: OS:Any
Assigned to: CPU Architecture:Any

[17 Jul 2012 5:03] vincent arc
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?