Xampp php_pdo_odbc not working

拜拜、爱过 提交于 2020-01-30 08:09:06

问题


Xampp linux version: 7.1 OS: Ubuntu 14.04

I already uncommented extensions=php_pdo_odbc.dll in opt/lampp/etc/php.ini

but odbc is not showing

image here


回答1:


you are using linux, so forget about .dll windows extension :

first you will need to check if you have the extension or not :

print_r(PDO::getAvailableDrivers());

this will print an array with the currently installed PDO Drivers,

if you didn't get the odbc driver , try to enable it :

sudo phpenmod pdo_odbc

then check again, if not installed you will need to install it :

apt-get install php7.0-odbc


来源:https://stackoverflow.com/questions/43028429/xampp-php-pdo-odbc-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!