OciDsn.php 238 B

1234567891011121314151617181920
  1. <?php
  2. namespace common\helpers\Dsn;
  3. use common\helpers\Dsn;
  4. /**
  5. * OciDsn
  6. *
  7. */
  8. class OciDsn extends Dsn
  9. {
  10. public function init()
  11. {
  12. $this->dsn = str_replace("dbname=", "", $this->dsn);
  13. parent::init();
  14. }
  15. }