Index: branches/REL1_17/phase3/includes/db/DatabaseOracle.php |
— | — | @@ -275,6 +275,8 @@ |
276 | 276 | # removed putenv calls because they interfere with the system globaly |
277 | 277 | $this->doQuery( 'ALTER SESSION SET NLS_TIMESTAMP_FORMAT=\'DD-MM-YYYY HH24:MI:SS.FF6\'' ); |
278 | 278 | $this->doQuery( 'ALTER SESSION SET NLS_TIMESTAMP_TZ_FORMAT=\'DD-MM-YYYY HH24:MI:SS.FF6\'' ); |
| 279 | + $this->doQuery( 'ALTER SESSION SET NLS_NUMERIC_CHARACTERS=\'.,\'' ); |
| 280 | + |
279 | 281 | return $this->mConn; |
280 | 282 | } |
281 | 283 | |