Fixed database query execution
When queries are repeated, a method was supposed to be called in order to check for prepared queries. This method did not exist. Which did not help.
This commit is contained in:
parent
a1d327d465
commit
f1016b039f
1 changed files with 6 additions and 0 deletions
|
@ -130,4 +130,10 @@ final class DBQuery
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function prepared( )
|
||||||
|
{
|
||||||
|
return ( $this->statement !== null );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue