(sorry for my poor english)
When I try to connect to a Interbase (version 6.0) Database in Win2k Server, PHP returns the error:
"Warning: InterBase: unavailable database in c:\teste.php..."
But the database EXISTS!
This is the code:
$db='C:\Arquivos de programas\Borland\InterBase\examples\Database\employee.gdb';
$username='SYSDBA';
$password='masterkey';
$connect=ibase_connect($db,$username,$password);
- Look and notice the database's name: is a Interbase database "default" that I tried to connect.
The Interbase's server is located in my computer... isn't a external server.
What's the problem? I can't connect to any Interbase database...
Leonardo