coraxster / laravel-odbc
简单的 Laravel ODBC 连接器
1.0.2
2018-12-27 08:50 UTC
Requires
- ext-pdo: *
- ext-pdo_odbc: *
- illuminate/container: 5.*
- illuminate/database: 5.*
This package is auto-updated.
Last update: 2024-08-27 22:06:04 UTC
README
简单的 ODBC 驱动,连接器等等...
安装
composer require coraxster/laravel-odbc
配置
按照常规将其添加到 config/db.php 中
# ... config/db.php
'hive' => [
'driver' => 'odbc',
'dsn' => 'DRIVER={YOUR_ODBC_DRIVER};Host=host.env;PORT=10000;Schema=default;',
'username' => '',
'password' => ''
],
# ... where {YOUR_ODBC_DRIVER} is driver from odbcinst.ini or path to driver.so