@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | else |
133 | 133 | { |
134 | 134 | if ($isSelectStm) |
135 | - $exec = $this->result = sqlsrv_query($this->dbconn, $sql, $params, array( "Scrollable" => SQLSRV_CURSOR_KEYSET )); |
|
135 | + $exec = $this->result = sqlsrv_query($this->dbconn, $sql, $params, array("Scrollable" => SQLSRV_CURSOR_KEYSET)); |
|
136 | 136 | else |
137 | 137 | $exec = $this->result = sqlsrv_query($this->dbconn, $sql, $params); |
138 | 138 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | $this->rowsAffected = sqlsrv_rows_affected($this->result); |
159 | 159 | |
160 | 160 | if ($this->transac_mode) |
161 | - $this->transac_result = is_null($this->transac_result) ? $this->result: $this->transac_result && $this->result; |
|
161 | + $this->transac_result = is_null($this->transac_result) ? $this->result : $this->transac_result && $this->result; |
|
162 | 162 | |
163 | 163 | return $this->result; |
164 | 164 | } |