You are here

public function FrxMSSQL::format in Forena Reports 7.3

Same name and namespace in other branches
  1. 6.2 plugins/FrxMSSQL.inc \FrxMSSQL::format()
  2. 6 plugins/FrxMSSQL.inc \FrxMSSQL::format()
  3. 7 plugins/FrxMSSQL.inc \FrxMSSQL::format()
  4. 7.2 plugins/FrxMSSQL.inc \FrxMSSQL::format()
  5. 7.4 plugins/FrxMSSQL.inc \FrxMSSQL::format()

Implement custom SQL formatter to make sure that strings are properly escaped. Ideally we'd replace this with something that handles prepared statements, but it wouldn't work for

Parameters

unknown_type $value:

unknown_type $key:

unknown_type $data:

File

plugins/FrxMSSQL.inc, line 148
Oracle specific driver that takes advantage of oracles native XML support

Class

FrxMSSQL
@file Oracle specific driver that takes advantage of oracles native XML support

Code

public function format($value, $key) {
  $value = $this
    ->parmConvert($key, $value);
  if ($value === '' || $value === NULL) {
    $value = 'NULL';
  }
  elseif (is_int($value)) {
    $value = (int) $value;
    $value = (string) $value;
  }
  elseif (is_float($value)) {
    $value = (double) $value;
    $value = (string) $value;
  }
  else {
    $value = "'" . str_replace("'", "''", $value) . "'";
  }
  return $value;
}