Subject | Re: [Firebird-Java] Re: Can't connect to DB oln localhost - Linux issue? |
---|---|
Author | Roman Rokytskyy |
Post date | 2004-12-13T09:31:11Z |
>> Are you sure your firebird is actually running?Note, when you use
>
> Yes!... Like I said I can connect via isql...
CONNECT '/home/myhome/mydb.fdb' USER 'sysdba' PASSWORD 'masterkey';
isql uses IPC to connect to your database. To be sure that your TCP/IP stack
works correctly, use
CONNECT 'localhost:/home/myhome/mydb.fdb' USER 'sysdba' PASSWORD
'masterkey';
Roman