thinkphp使用連接mssql和sqlserver 數據庫

<?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>
// +----------------------------------------------------------------------

return [
    // 數據庫類型
    'type'            => 'Dblib',
    // 服務器地址
    'hostname'        => '127.0.0.1',
    // 數據庫名
    'database'        => 'erp',
    // 用戶名
    'username'        => 'sa',
    // 密碼
    'password'        => '123123',
    // 端口
    'hostport'        => '40502',
    // 鏈接dsn
    'dsn'             => 'dblib:version=7.0;host=127.0.01:40502;dbname=erp',
    // 數據庫鏈接參數
    '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,
];

 

windows下用的是sqlsrv
用的是query 不是tablephp

另外執行代碼的是時候sql

<?php
namespace app\index\controller;
use    think\Db;
class Index
{
    public function index()
    {
    //	var_dump(Db::getConfig());
        $res = Db::query('select * from pinpai');
      
  
        dump($res);
        return 1111;
    }
    
    public function connectDb(){
   
    }

}
相關文章
相關標籤/搜索