JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrconnection); return $serverInfo['SQLServerVersion']; } public function prepare(string $sql): Statement { return new Statement($this->connection, $sql); } public function query(string $sql): Result { return $this->prepare($sql)->execute(); } public function quote(string $value): string { return "'" . str_replace("'", "''", $value) . "'"; } public function exec(string $sql): int { $stmt = sqlsrv_query($this->connection, $sql); if ($stmt === false) { throw Error::new(); } $rowsAffected = sqlsrv_rows_affected($stmt); if ($rowsAffected === false) { throw Error::new(); } return $rowsAffected; } public function lastInsertId(): int|string { $result = $this->query('SELECT @@IDENTITY'); $lastInsertId = $result->fetchOne(); if ($lastInsertId === null) { throw NoIdentityValue::new(); } return $lastInsertId; } public function beginTransaction(): void { if (! sqlsrv_begin_transaction($this->connection)) { throw Error::new(); } } public function commit(): void { if (! sqlsrv_commit($this->connection)) { throw Error::new(); } } public function rollBack(): void { if (! sqlsrv_rollback($this->connection)) { throw Error::new(); } } /** @return resource */ public function getNativeConnection() { return $this->connection; } }