Horde_Db_Adapter::rawConnection PHP 메소드

rawConnection() 공개 메소드

Provides access to the underlying database connection. Useful for when you need to call a proprietary method such as postgresql's lo_* methods.
public rawConnection ( ) : resource
리턴 resource
    public function rawConnection();

Usage Example

예제 #1
0
파일: SplitRead.php 프로젝트: horde/horde
 /**
  * Provides access to the underlying database connection. Useful for when
  * you need to call a proprietary method such as postgresql's
  * lo_* methods.
  *
  * @return resource
  */
 public function rawConnection()
 {
     return $this->_write->rawConnection();
 }