Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 265 → Rev 266

/trunk/plugins/database/mysqli/plugin.inc.php
64,7 → 64,8
} else {
$ps = $this->conn->prepare($sql);
if (!$ps) {
throw new OIDplusSQLException($sql, 'Cannot prepare statement');
$this->last_error = $this->conn->error;
throw new OIDplusSQLException($sql, 'Cannot prepare statement: '.$this->error());
}
 
// Caching the prepared is very risky