/// DB using DOTS. Manually introduced floats (if using other characters) must be
/// converted back to DOTs (like gradebook does)
$sql = "ALTER SESSION SET NLS_NUMERIC_CHARACTERS='.,'";
- $rs = $this->query_start($sql, null, SQL_QUERY_AUX);
- $this->adodb->Execute($sql);
+ $this->query_start($sql, null, SQL_QUERY_AUX);
+ $rs = $this->adodb->Execute($sql);
$this->query_end($rs);
return true;
*/
function setup_is_unicodedb() {
$sql = "SELECT parameter, value FROM nls_database_parameters where parameter = 'NLS_CHARACTERSET'";
- $rs = $this->query_start($sql, null, SQL_QUERY_AUX);
- $this->adodb->Execute($sql);
+ $this->query_start($sql, null, SQL_QUERY_AUX);
+ $rs = $this->adodb->Execute($sql);
$this->query_end($rs);
if ($rs && !$rs->EOF) {