PHP code example of iayoo / think-oracle

1. Go to this page and download the library: Download iayoo/think-oracle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

iayoo / think-oracle example snippets


'oracle' => [
    // 数据库类型
    'type'            => env('oracle.type', '\iayoo\think\Oracle'),
    // 服务器地址
    'hostname'        => env('oracle.hostname', '127.0.0.1'),
    // 数据库名
    'database'        => env('oracle.database', ''),
    // 用户名
    'username'        => env('oracle.username', ''),
    // 密码
    'password'        => env('oracle.password', ''),
    // 端口
    'hostport'        => env('oracle.hostport', '1521'),
    // 数据库连接参数
    'params'          => [],
    // 数据库编码默认采用utf8
    'charset'         => env('database.charset', 'utf8'),
    // 数据库表前缀
    'prefix'          => env('database.prefix', ''),

    // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
    'deploy'          => 0,
    // 数据库读写是否分离 主从式有效
    'rw_separate'     => false,
    // 读写分离后 主服务器数量
    'master_num'      => 1,
    // 指定从服务器序号
    'slave_no'        => '',
    // 是否严格检查字段是否存在
    'fields_strict'   => true,
    // 是否需要断线重连
    'break_reconnect' => false,
    // 监听SQL
    'trigger_sql'     => env('app_debug', true),
    // 开启字段缓存
    'fields_cache'    => false,
    // Builder类
    'builder'         => 'iayoo\think\Builder',
    // Query类
    'query'           => 'iayoo\think\Query',
]