Class MYXWrongFunction
Common base class of MYXResultRecieved
and MYXNoResultRecieved
.
Thrown when making the wrong choice between mysql
versus mysql
.
The query functions (mysql
, mysql
, etc.)
are for SQL statements such as SELECT that
return results (even if the result set has zero elements.)
The mysql
functions
are for SQL statements, such as INSERT, that never return result sets,
but may return rowsAffected
.
Using one of those functions, when the other should have been used instead, results in an exception derived from this.