
neeraj gupta - 2013-03-12 10:22:30 -
In reply to message 2 from Bennett Stone
There are same error in the few functions:
get_results,query,num_rows,get_row
Issue:
Query is not getting printed in the mail when there is some error in the query.
Reason:
Sql query is passed to variable $query,
and then same variable is used for fetching the data.
$query = $this->link->query( $query);
If there is error ,then the resulted 'query' is getting overwrite and then
passed to function: log_db_errors ,
which in turns shows nothing.