if (!
$this->statement =
oci_parse($this->db->connID,
$this->
parameterize($sql))) { $error =
oci_error($this->db->connID
);
$this->errorCode =
$error['code'
] ?? 0;
$this->errorString =
$error['message'
] ?? '';
if ($this->db->DBDebug
) { throw new DatabaseException($this->errorString . ' code: ' .
$this->errorCode
);
} } $this->lastInsertTableName =
$this->db->
parseInsertTableName($sql);
return $this;
} /**
* Takes a new set of data and runs it against the currently
* prepared query. Upon success, will return a Results object.
*/
public function _execute(array
$data): bool
{ if (!
isset($this->statement
)) {