一、Oracle官方网站下载安装Oracle客户端。
1,下载地址:
http://www.oracle.com/technetwork/cn/database/features/instant-client/index-097480.html
2,下载PHP 扩展Oracle客户端 DLL链接文件。
http://pecl.php.net/package/oci8 选择DLL下载;
将下载的文件接下dll 文件到 PHP的DLL扩展目录
3,php.ini配置文件中开启Oracle连接扩展。
;extension = php_pdo_oci.dll
;extension=php_oci8.dll
去除前面的分好并重启apache
4,打开phpinfo,查看oci8扩展是否打开
二、下载ThinkPHP Oracle数据库扩展驱动类并使用
1,Oracle数据库扩展驱动类下载地址。
https://github.com/top-think/think-oracle
将下载好的文件解压,得到src目录下的两个文件,Builder.php和Connection.php
(1)将Builder.php和Connection.php分别放到:\thinkphp\library\think\db对应的builder和connector目录并都改名为Oracle.php;
(2)修改builder目录下的Oracle.php文件,如下:
namespace think\oracle;
use think\db\Builder as BaseBuilder;
use think\db\Query;
/**
- Oracle数据库驱动
*/
class Builder extends BaseBuilder
改为
namespace think\db\builder;
use think\db\Builder;
use think\Exception;
/**
- Oracle数据库驱动
*/
class Oracle extends Builder
(3)修改connector目录下的Oracle.php文件,如下:
namespace think\oracle;
use PDO;
use think\db\Connection as BaseConnection;
/**
- Oracle数据库驱动
*/
class Connection extends BaseConnection
改为
namespace think\db\connector;
use PDO;
use think\db\Connection;
use think\Log;
/**
- Oracle数据库驱动
*/
class Oracle extends Connection
(4)开始使用,一般tp项目使用的默认数据库mysql,而可能某个模块需要用到oracle数据库,所以在该模块对应的控制器方法内配置oracle连接。如下:
$conn = [
// 数据库类型
'type' => 'oracle',
// 服务器地址
'hostname' => 'tnsnames.ora配置文件所要连接视图对应的HOST',
// 数据库名
'database' => 'tnsnames.ora配置文件所要连接视图对应的SERVICE_NAME',
// 用户名
'username' => 'oracle数据库的登陆账号',
// 密码
'password' => 'oracle数据库的登陆密码',
// 端口
'hostport' => 'tnsnames.ora配置文件所要连接视图对应的PORT',
// 连接dsn
'dsn' => '',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8',
// 数据库表前缀
'prefix' => '',
// 数据库调试模式
'debug' => true,
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效
'rw_separate' => false,
// 读写分离后 主服务器数量
'master_num' => 1,
// 指定从服务器序号
'slave_no' => '',
// 是否严格检查字段是否存在
'fields_strict' => true,
// 数据集返回类型
'resultset_type' => 'array',
// 自动写入时间戳字段
'auto_timestamp' => false,
// 时间字段取出后的默认时间格式
'datetime_format' => 'Y-m-d H:i:s',
// 是否需要进行SQL性能分析
'sql_explain' => false,
];
$oraAllItem = Db::connect($conn, true)
->query("select fail_item,build_step from 视图表名 t where t.product=:project and t.station_type=:station and status=1 and fail_item is not null", ['project' => $project, 'station' => $resStation[$station]]);
总结: oracle的sql语法与mysql中的语法有一些区别,不能完全按mysql中的写法
转自:http://www.admincms.top/live_learn/2018-05-11/55.html