Oracle

Oracle class - PHP

<?php
class DB_Sql {
 var $Debug = false;
 var $Home = “/u01/app/oracle/ora90″;
 var $Remote = 1;
 /**
  * http://www.easemarry.com/blog
  * This Query will be sent directly after the first connection
  * Example:
  * var $ConnectQuery=”ALTER SESSION SET nls_date_language=german nls_date_format=’DD.MM.RRRR’”;
  * -> Set the date format for this session, this is fine when your ora-role
  * cannot be altered
  */
 var $ConnectQuery=”;
 /**
  [...]