handle when sql error occurs and no params given
parent
f39353a4a3
commit
63c788ef0e
|
@ -141,7 +141,7 @@ if ( 0 ) {
|
||||||
Warning("SQL: $sql: rows:" . $result->rowCount() );
|
Warning("SQL: $sql: rows:" . $result->rowCount() );
|
||||||
}
|
}
|
||||||
} catch(PDOException $e) {
|
} catch(PDOException $e) {
|
||||||
Error( "SQL-ERR '".$e->getMessage()."', statement was '".$sql."' params:" . implode(',',$params) );
|
Error( "SQL-ERR '".$e->getMessage()."', statement was '".$sql."' params:" . $params?implode(',',$params):'' );
|
||||||
}
|
}
|
||||||
return( $result );
|
return( $result );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue