mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 20:52:48 +08:00
124 lines
3.6 KiB
PHP
124 lines
3.6 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace think\db\driver;
|
|
|
|
use think\db\Driver;
|
|
|
|
/**
|
|
* Pgsql数据库驱动
|
|
*/
|
|
class Pgsql extends Driver
|
|
{
|
|
|
|
/**
|
|
* 解析pdo连接的dsn信息
|
|
* @access public
|
|
* @param array $config 连接信息
|
|
* @return string
|
|
*/
|
|
protected function parseDsn($config)
|
|
{
|
|
$dsn = 'pgsql:dbname=' . $config['database'] . ';host=' . $config['hostname'];
|
|
if (!empty($config['hostport'])) {
|
|
$dsn .= ';port=' . $config['hostport'];
|
|
}
|
|
return $dsn;
|
|
}
|
|
|
|
/**
|
|
* 取得数据表的字段信息
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getFields($tableName)
|
|
{
|
|
list($tableName) = explode(' ', $tableName);
|
|
$result = $this->query('select fields_name as "field",fields_type as "type",fields_not_null as "null",fields_key_name as "key",fields_default as "default",fields_default as "extra" from table_msg(' . $tableName . ');');
|
|
$info = [];
|
|
if ($result) {
|
|
foreach ($result as $key => $val) {
|
|
$info[$val['field']] = [
|
|
'name' => $val['field'],
|
|
'type' => $val['type'],
|
|
'notnull' => (bool) ('' === $val['null']), // not null is empty, null is yes
|
|
'default' => $val['default'],
|
|
'primary' => (strtolower($val['key']) == 'pri'),
|
|
'autoinc' => (strtolower($val['extra']) == 'auto_increment'),
|
|
];
|
|
}
|
|
}
|
|
return $info;
|
|
}
|
|
|
|
/**
|
|
* 取得数据库的表信息
|
|
* @access public
|
|
* @return array
|
|
*/
|
|
public function getTables($dbName = '')
|
|
{
|
|
$result = $this->query("select tablename as Tables_in_test from pg_tables where schemaname ='public'");
|
|
$info = [];
|
|
foreach ($result as $key => $val) {
|
|
$info[$key] = current($val);
|
|
}
|
|
return $info;
|
|
}
|
|
|
|
/**
|
|
* limit分析
|
|
* @access protected
|
|
* @param mixed $limit
|
|
* @return string
|
|
*/
|
|
public function parseLimit($limit)
|
|
{
|
|
$limitStr = '';
|
|
if (!empty($limit)) {
|
|
$limit = explode(',', $limit);
|
|
if (count($limit) > 1) {
|
|
$limitStr .= ' LIMIT ' . $limit[1] . ' OFFSET ' . $limit[0] . ' ';
|
|
} else {
|
|
$limitStr .= ' LIMIT ' . $limit[0] . ' ';
|
|
}
|
|
}
|
|
return $limitStr;
|
|
}
|
|
|
|
/**
|
|
* 字段和表名处理
|
|
* @access protected
|
|
* @param string $key
|
|
* @return string
|
|
*/
|
|
protected function parseKey($key)
|
|
{
|
|
$key = trim($key);
|
|
if (strpos($key, '$.') && false === strpos($key, '(')) {
|
|
// JSON字段支持
|
|
list($field, $name) = explode($key, '$.');
|
|
$key = $field . '->>\'' . $name . '\'';
|
|
}
|
|
return $key;
|
|
}
|
|
|
|
/**
|
|
* 随机排序
|
|
* @access protected
|
|
* @return string
|
|
*/
|
|
protected function parseRand()
|
|
{
|
|
return 'RANDOM()';
|
|
}
|
|
}
|