我正在尝试在ubuntu10.04和PHP 5.4.37中安装pdo_pgsql。实际上,postgresql已安装,并与phppgadmin一起正常工作。当我输入pecl install pdo_pgsql时,我为pgsql安装了pdo。`pecl/pdo_pgsql is already installed and is the same as the released version 1.0.2
我还在/etc/php5/apache2/conf.d/中添加了一个新的pgsql.
我需要帮助在Linux中连接Laravel和PostgreSQL数据库(基于ubuntu14.04的ElementaryOS)这是我的php.ini:extension=pdo_pgsql.so$usuario = DB::select('select * from usuario');“无法找到驱动程序(SQL: select * from usuario)”DB_CONNECTION
我需要帮助。我在生产服务器中有一个带有postgresql的laravel 8,在这里,我可以从控制器中完美地访问测试表的记录并在视图中显示它们。到现在为止一切都还好。但是,当试图安装livewire以拥有用户时,它不允许我进行迁移。
could not find driver (SQL: select * from information_schema.tables where table_schema = myschema and table_name = migrations and table_type = 'BASE TABLE