rodrigosantosbr

POSTGRESQL COM XAMPP

Jun 28th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!

Configuração de integração PostgreSQL no XAMPP

Abre o arquivo c:/xampp/php/php.ini e descomente as linhas abaixo:

extension=pdo_pgsql
extension=pgsql

Reinicie o serviço
Reinicie o Apache pela ferramenta XAMPP

Testes
Agora crie um arquivo info.php

<?php
  phpinfo();
?>

Veja se o módulo pdo_pgsql foi habilitado

Add Comment
Please, Sign In to add comment