• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP oci_server_version函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中oci_server_version函数的典型用法代码示例。如果您正苦于以下问题:PHP oci_server_version函数的具体用法?PHP oci_server_version怎么用?PHP oci_server_version使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了oci_server_version函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: getAttribute

 public function getAttribute($attribute, &$source = null, $func = 'PDO::getAttribute', &$last_error = null)
 {
     switch ($attribute) {
         case PDO::ATTR_AUTOCOMMIT:
             return $this->autocommit;
             break;
         case PDO::ATTR_PREFETCH:
             break;
         case PDO::ATTR_CLIENT_VERSION:
             return oci_server_version($this->link);
             break;
         case PDO::ATTR_SERVER_VERSION:
             $ver = oci_server_version($this->link);
             if (preg_match('/([0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+\\.[0-9]+)/', $ver, $match)) {
                 return $match[1];
             }
             return $ver;
             break;
         case PDO::ATTR_SERVER_INFO:
             return oci_server_version($this->link);
             break;
         default:
             return parent::getAttribute($attribute, $source, $func, $last_error);
             break;
     }
 }
开发者ID:Deepab23,项目名称:clinic,代码行数:26,代码来源:oci.php


示例2: getServerVersion

 /**
  * {@inheritdoc}
  *
  * @throws \UnexpectedValueException if the version string returned by the database server
  *                                   does not contain a parsable version number.
  */
 public function getServerVersion()
 {
     if (!preg_match('/\\s+(\\d+\\.\\d+\\.\\d+\\.\\d+\\.\\d+)\\s+/', oci_server_version($this->dbh), $version)) {
         throw new \UnexpectedValueException(sprintf('Unexpected database version string "%s". Cannot parse an appropriate version number from it. ' . 'Please report this database version string to the Doctrine team.', oci_server_version($this->dbh)));
     }
     return $version[1];
 }
开发者ID:BozzaCoon,项目名称:SPHERE-Framework,代码行数:13,代码来源:OCI8Connection.php


示例3: getServerVersion

 /**
  * Returns oracle version.
  *
  * @throws \UnexpectedValueException if the version string returned by the database server does not parsed
  * @return int Version number
  */
 public function getServerVersion()
 {
     $versionData = oci_server_version($this->dbh);
     if (!preg_match('/\\s+(\\d+\\.\\d+\\.\\d+\\.\\d+\\.\\d+)\\s+/', $versionData, $version)) {
         throw new \UnexpectedValueException(__('Unexpected database version string "{0}" that not parsed.', $versionData));
     }
     return $version[1];
 }
开发者ID:cakedc,项目名称:cakephp-oracle-driver,代码行数:14,代码来源:OCI8Connection.php


示例4: connect

 /**
 +----------------------------------------------------------
 * 连接数据库方法
 +----------------------------------------------------------
 * @access public
 +----------------------------------------------------------
 * @throws ThinkExecption
 +----------------------------------------------------------
 */
 public function connect($config = '', $linkNum = 0)
 {
     if (!isset($this->linkID[$linkNum])) {
         if (empty($config)) {
             $config = $this->config;
         }
         $conn = $this->pconnect ? 'oci_pconnect' : 'oci_new_connect';
         $this->linkID[$linkNum] = $conn($config['username'], $config['password'], "//{$config['hostname']}:{$config['hostport']}/{$config['database']}");
         //modify by wyfeng at 2008.12.19
         if (!$this->linkID[$linkNum]) {
             $error = $this->error(false);
             throw_exception($error["message"], '', $error["code"]);
             return false;
         }
         $this->dbVersion = oci_server_version($this->linkID[$linkNum]);
         // 标记连接成功
         $this->connected = true;
         //注销数据库安全信息
         if (1 != C('DB_DEPLOY_TYPE')) {
             unset($this->config);
         }
     }
     return $this->linkID[$linkNum];
 }
开发者ID:dalinhuang,项目名称:concourse,代码行数:33,代码来源:DbOracle.class.php


示例5: sql_server_info

	/**
	* Version information about used database
	* @param bool $raw if true, only return the fetched sql_server_version
	* @return string sql server version
	*/
	function sql_server_info($raw = false) {
		$this->sql_server_version = @oci_server_version($this->connect);

		return $this->sql_server_version;
	}
开发者ID:nopticon,项目名称:rockr,代码行数:10,代码来源:class.oracle.php


示例6: getServerVersion

 public function getServerVersion()
 {
     set_error_handler(static::getErrorHandler());
     $serverVersion = oci_server_version($this->resource);
     restore_error_handler();
     return $serverVersion;
 }
开发者ID:jpina,项目名称:oci8,代码行数:7,代码来源:Oci8Connection.php


示例7: getServerVersion

 /**
  * @return string Version information from the database
  */
 function getServerVersion()
 {
     //better version number, fallback on driver
     $rset = $this->doQuery('SELECT version FROM product_component_version WHERE UPPER(product) LIKE \'ORACLE DATABASE%\'');
     if (!($row = $rset->fetchRow())) {
         return oci_server_version($this->mConn);
     }
     return $row['version'];
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:12,代码来源:DatabaseOracle.php


示例8: getDbInfo

 /**
  * @return array|mixed
  */
 public function getDbInfo()
 {
     $arrReturn = array();
     $arrReturn["dbdriver"] = "oci8-oracle-extension";
     $arrReturn["dbserver"] = oci_server_version($this->linkDB);
     $arrReturn["dbclient"] = function_exists("oci_client_version") ? oci_client_version($this->linkDB) : "";
     return $arrReturn;
 }
开发者ID:jinshana,项目名称:kajonacms,代码行数:11,代码来源:class_db_oci8.php


示例9: _version

 /**
  * Version number query string
  *
  * @access  protected
  * @return  string
  */
 protected function _version()
 {
     return oci_server_version($this->conn_id);
 }
开发者ID:wiliamdecosta,项目名称:ifalconi_oci_responsive,代码行数:10,代码来源:oci8_driver.php


示例10: versionOracle

function versionOracle()
{
    ///////////////////////
    ///////////////////////
    //////////////////////
    // TODO EN PDO
    $conn = oci_connect('scott', 'tiger', '10.0.220.100:1521/ORAPROF');
    $version = oci_server_version($conn);
    oci_close($conn);
    return $version;
}
开发者ID:erwanLeGuen,项目名称:PPE,代码行数:11,代码来源:AccesDonnees.php


示例11: version

 public function version()
 {
     if (!empty($this->connect)) {
         return oci_server_version($this->connect);
     } else {
         return false;
     }
 }
开发者ID:znframework,项目名称:znframework,代码行数:8,代码来源:Oracle.php


示例12: server_info

 /**
  * 获取服务器信息
  *
  * @return string 服务器信息
  */
 public function server_info()
 {
     return oci_server_version($this->db_link);
 }
开发者ID:laiello,项目名称:hecart,代码行数:9,代码来源:oci.php


示例13: getDbInfo

 public function getDbInfo()
 {
     return array("Server version" => @oci_server_version($this->database), "Express" => $this->isExpress());
 }
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:4,代码来源:OracleManager.php


示例14: php_sql

 function php_sql()
 {
     $get_version = explode("-", oci_server_version($this->dbh));
     return "ENV: php " . phpversion() . "[Oracle " . $get_version[0] . "]";
 }
开发者ID:chaobj001,项目名称:tt,代码行数:5,代码来源:DBOracle.class.php


示例15: ServerInfo

 function ServerInfo()
 {
     $arr['compat'] = $this->GetOne('select value from sys.database_compatible_level');
     $arr['description'] = @oci_server_version($this->_connectionID);
     $arr['version'] = ADOConnection::_findvers($arr['description']);
     return $arr;
 }
开发者ID:advancingdesign,项目名称:ADOdb,代码行数:7,代码来源:adodb-oci8.inc.php


示例16: getServerVersion

 /**
  * @return string Version information from the database
  */
 function getServerVersion()
 {
     return oci_server_version($this->mConn);
 }
开发者ID:Jobava,项目名称:diacritice-meta-repo,代码行数:7,代码来源:DatabaseOracle.php


示例17: die

//var_dump(get_loaded_extensions());
if (!extension_loaded("oci8")) {
    die("Extenstion oci8 is not loaded");
}
$db = "(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.99.100)(PORT = 49161)))(CONNECT_DATA=(SID=XE)))";
$username = "system";
$password = "oracle";
if ($vcap_service_env = getenv("VCAP_SERVICES")) {
    $vcap = json_decode($vcap_service_env, true);
    $userProvidedTypes = !empty($vcap['user-provided']) ? $vcap['user-provided'] : array();
    foreach ($userProvidedTypes as $userProvided) {
        if (stripos($userProvided['name'], 'oracle-11-docker') !== false) {
            $credentials = $userProvided['credentials'];
            $db = "(DESCRIPTION=(ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)";
            $db .= "(HOST =" . $credentials['host'] . " )(PORT = " . $credentials['port'] . ")))";
            $db .= "(CONNECT_DATA=(SID=" . $credentials['sid'] . ")))";
            $username = $credentials['username'];
            $password = $credentials['password'];
            break;
        }
    }
}
//Simple connexion test
$oci_connect = oci_connect($username, $password, $db);
if (!$oci_connect) {
    $e = oci_error();
    die(print_r($e));
}
echo "Connected to Oracle Using OCI8" . "<br />";
echo "Server Version: " . oci_server_version($oci_connect);
开发者ID:shinji62,项目名称:oracle-sample-apps,代码行数:30,代码来源:index.php


示例18: get_server_info

 /**
  * Returns database server info array
  * @return array Array containing 'description' and 'version' info
  */
 public function get_server_info()
 {
     static $info = null;
     // TODO: move to real object property
     if (is_null($info)) {
         $this->query_start("--oci_server_version()", null, SQL_QUERY_AUX);
         $description = oci_server_version($this->oci);
         $this->query_end(true);
         preg_match('/(\\d+\\.)+\\d+/', $description, $matches);
         $info = array('description' => $description, 'version' => $matches[0]);
     }
     return $info;
 }
开发者ID:nmicha,项目名称:moodle,代码行数:17,代码来源:oci_native_moodle_database.php


示例19: version

 function version()
 {
     return oci_server_version($this->link);
 }
开发者ID:OpenXtrem,项目名称:mediboard-test,代码行数:4,代码来源:COracleDataSource.class.php


示例20: version

 /**
  * Database version number.
  *
  * @return string
  */
 public function version()
 {
     if (isset($this->data_cache['version'])) {
         return $this->data_cache['version'];
     }
     if (!$this->conn_id or ($version_string = oci_server_version($this->conn_id)) === false) {
         return false;
     } elseif (preg_match('#Release\\s(\\d+(?:\\.\\d+)+)#', $version_string, $match)) {
         return $this->data_cache['version'] = $match[1];
     }
     return false;
 }
开发者ID:recca0120,项目名称:laraigniter,代码行数:17,代码来源:oci8_driver.php



注:本文中的oci_server_version函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP oci_set_client_identifier函数代码示例发布时间:2022-05-15
下一篇:
PHP oci_rollback函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap