Lines Matching refs:res
79 $res = $this->executeParametrizedStatement($statement, $values);
83 $res = $this->sqlitePlugin->query($this->query);
87 $res = $this->executeParametrizedStatement($this->statement, $this->parameters);
93 $res = $sqLiteAdapater->executeQuery($this->statement);
95 $res = $sqLiteAdapater->query($this->statement);
104 if ($res === null) {
108 if ($res === false) {
113 if (!$res instanceof \PDOStatement) {
115 throw new ExceptionCompile("Error in the request type `$requestType`. res is not a PDOStatement but as the value ($res). Message: {$message}, Query: {$queryExecuted}");
118 $this->result = new SqliteResult($this, $res);