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
 /**
  * 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();
 }