ThinkPHP6(PHP)不能直接通过现有的扩展和代码直接连接达梦数据库,要通过先在PHP中安装达梦的PDO驱动(扩展)和DM驱动(扩展),要在安装达梦的时候勾选驱动(如果有也可以不进行勾选)。
达梦数据库安装完成后,在安装目录中的php_pdo中有对应PHP版本的驱动
找到对应自己PHP版本的文件复制到PHP扩展目录中,添加948、949行的内容,注意nts和ts版本的区别,也在php.ini 中直接引用绝对地址,
添加完成后,还要将达梦的bin 目录添加的环境变量中,不然会出错
上面两步添加完成后,可执行php -m 查看,显示DM 和PDO_DM时说明安装正确,重启web服务(nginx或apache)
通过以上步骤,就可以直接使用PHP连接上达梦数据库了,可以进行相应的数据库的操作了。
ThinkPHP不能直接连接达梦,需要添加连接驱动代码,添加两个文件
1、在vendor/topthink/think-orm/src/db/builder 下添加 Dm.php
<?php
declare (strict_types = 1);
namespace think\db\builder;
use think\db\Builder;
use think\db\Query;
/**
* Dm数据库驱动
*/
class Dm extends Builder
{
protected $selectSql = 'SELECT * FROM (SELECT thinkphp.*, rownum AS numrow FROM (SELECT %DISTINCT% %FIELD% FROM %TABLE%%JOIN%%WHERE%%GROUP%%HAVING%%ORDER%) thinkphp ) %LIMIT%%COMMENT%';
/**
* limit分析
* @access protected
* @param Query $query 查询对象
* @param mixed $limit
* @return string
*/
protected function parseLimit(Query $query, string $limit): string
{
$limitStr = '';
if (!empty($limit)) {
$limit = explode(',', $limit);
if (count($limit) > 1) {
$limitStr = "(numrow>" . $limit[0] . ") AND (numrow<=" . ($limit[0] + $limit[1]) . ")";
} else {
$limitStr = "(numrow>0 AND numrow<=" . $limit[0] . ")";
}
}
return $limitStr ? ' WHERE ' . $limitStr : '';
}
/**
* 设置锁机制
* @access protected
* @param Query $query 查询对象
* @param bool|false $lock
* @return string
*/
protected function parseLock(Query $query, $lock = false): string
{
if (!$lock) {
return '';
}
return ' FOR UPDATE NOWAIT ';
}
/**
* 字段和表名处理
* @access public
* @param Query $query 查询对象
* @param string $key
* @param string $strict
* @return string
*/
public function parseKey(Query $query, $key, bool $strict = false): string
{
$key = trim($key);
if (strpos($key, '->') && false === strpos($key, '(')) {
// JSON字段支持
list($field, $name) = explode($key, '->');
$key = $field . '."' . $name . '"';
}
return $key;
}
/**
* 随机排序
* @access protected
* @param Query $query 查询对象
* @return string
*/
protected function parseRand(Query $query): string
{
return 'DBMS_RANDOM.value';
}
}
2、vendor/topthink/think-orm/src/db/connector 新建 Dm.php,达梦默认表名及字段名都是大写,如果我们的系统是其它数据库转过来的,原来都是小写,要在查询数据后将字段名转为小写,下面文件的select和find 方法,具体要根据实际情况进行设置。
<?php
namespace think\db\connector;
use PDO;
use think\db\BaseQuery;
use think\db\Connection;
use think\db\PDOConnection;
use think\db\ConnectionInterface;
use think\db\Query;
/**
* Dm数据库驱动
*/
// class Dm extends Connection
class Dm extends PDOConnection
{
/**
* 解析pdo连接的dsn信息
* @access protected
* @param array $config 连接信息
* @return string
*/
protected function parseDsn(array $config): string
{
// $dsn = 'dm:host=';
// if (!empty($config['hostname'])) {
// // dm Instant Client
// $dsn .= $config['hostname'] . ($config['hostport'] ? ':' . $config['hostport'] : '') . '/';
// // $dsn .= $config['hostname'];
// }
// if (!empty($config['charset'])) {
// $dsn .= ';charset=' . $config['charset'];
// }
// return $dsn;
$dsn = "dm:host=".$config['hostname'];
return $dsn;
}
/**
* 取得数据表的字段信息
* @access public
* @param string $tableName
* @return array
*/
public function getFields(string $tableName): array
{
list($tableName) = explode(' ', $tableName);
$sql = "select a.column_name,data_type,DECODE (nullable, 'Y', 0, 1) notnull,data_default, DECODE (A .column_name,b.column_name,1,0) pk from all_tab_columns a,(select column_name from all_constraints c, all_cons_columns col where c.constraint_name = col.constraint_name and c.constraint_type = 'P' and c.table_name = '" . strtoupper($tableName) . "' ) b where table_name = '" . strtoupper($tableName) . "' and a.column_name = b.column_name (+)";
// $pdo = $this->query($sql, [], false, true);
// $result = $pdo->fetchAll(PDO::FETCH_ASSOC);
$pdo = $this->getPDOStatement($sql);
$result = $pdo->fetchAll(PDO::FETCH_ASSOC);
$info = [];
if ($result) {
foreach ($result as $key => $val) {
$val = array_change_key_case($val);
$info[$val['column_name']] = [
'name' => $val['column_name'],
'type' => $val['data_type'],
'notnull' => $val['notnull'],
'default' => $val['data_default'],
'primary' => $val['pk'],
'autoinc' => $val['pk'],
];
}
}
return $this->fieldCase($info);
}
/**
* 取得数据库的表信息(暂时实现取得用户表信息)
* @access public
* @param string $dbName
* @return array
*/
public function getTables(string $dbName = ''): array
{
$sql = 'select table_name from all_tables';
// $pdo = $this->query($sql, [], false, true);
// $result = $pdo->fetchAll(PDO::FETCH_ASSOC);
$pdo = $this->getPDOStatement($sql);
$result = $pdo->fetchAll(PDO::FETCH_ASSOC);
$info = [];
foreach ($result as $key => $val) {
$info[$key] = current($val);
}
return $info;
}
/**
* 获取最近插入的ID(如果使用自增列,需去掉此方法)
* @access public
* @param BaseQuery $query 查询对象
* @param string $sequence 自增序列名
* @return mixed
*/
// public function getLastInsID($sequence = null)
/* public function getLastInsID(BaseQuery $query, string $sequence = null)
{
$pdo = $this->linkID->query("select {$sequence}.currval as id from dual");
$insertId = $pdo->fetchColumn();
return $this->autoInsIDType($query, $insertId);
}*/
/**
* SQL性能分析
* @access protected
* @param string $sql
* @return array
*/
protected function getExplain(string $sql)
{
return [];
}
protected function supportSavepoint(): bool
{
return true;
}
/*
* 查询数据 字段大写转小写
*/
public function select(BaseQuery $query): array
{
$resultSet= parent::select($query);
foreach($resultSet as &$item){
$item=array_change_key_case($item , CASE_LOWER);
}
return $resultSet;
}
/*
* 查询数据 字段大写转小写
*/
public function find(BaseQuery $query): array
{
$resultSet= parent::find($query);
return array_change_key_case($resultSet , CASE_LOWER);
}
}
然后修改数据库配置文件或env文件,TYPE 要设置为Dm,其它根据实际情况设置
两个Dm.php 文件来源于网上,又改了一点点
如果遇到显示乱码,可以在 c:/windows/system32下建一个dm_svc.conf 文件 里面添加
CHAR_CODE=(PG_UTF8)
原创文章,作者:admin,如若转载,请注明出处:https://ntib.cn/292.html
评论列表(9条)
大佬问一下
我配置完后也确保拓展都开启了,怎么还是会报{“code”:10501,”msg”:”could not find driver”,”file”:”C:\\software\\SE\\PHP\\phpstudy_pro\\WWW\\dm\\vendor\\topthink\\think-orm\\src\\db\\PDOConnection.php”,”line”:”797″}
@1282:看配置文件 数据库类型对不对
@admin:大哥我连上了 但是回显的数据展示 0 => array:4 [
“id” => 1
“name” => b”ÕÅÈý”
“num” => “100”
“numrow” => 1
] name里面的那种乱码该怎么解决,求教
@1282:可以在 c:/windows/system32下建一个dm_svc.conf 文件 里面添加
CHAR_CODE=(PG_UTF8)
@admin:感谢感谢,弄好了(就是DB类好像用不了,只能写原生的)
@1282:我试是可以的
大佬我问一下,thinkphp6.0 怎么配置 才能访问远程的达梦数据库,我试了一下,好像不能访问
@1282:使用远程地址就行了,看远程数据库是否允许进行连接
Linux 添加环境变量/etc/profile export LD_LIBRARY_PATH=***/dmdbms/bin