1
I’m trying to make a connection to my FIREBIRD database, but when I organize it right, I put the IP where it is located etc. The message appears:
COULDN’T LOCATE DRIVER ON c/wamp/www////
What should I do, people ?
$user = "SYSDBA";
$pass = "masterkey";
$pdo=new PDO("firebird:localhost=IP AQUI;dbname=Duosig_producao",$user,$pass);
Driver is enabled in phpinfo()?
– rray