I am trying to configure a local firebird instance for testing, but cannot connect to it even with ISQL. I tried to follow the following quick start guide here :
CONNECT ..\examples\empbuild\employee.fdb user SYSDBA password masterkey;
The result is:
Statement failed, SQLSTATE = 08001 unavailable database
After some searching, I tried changing this to:
CONNECT "localhost:C:\Program Files\Firebird\Firebird_2_5\examples\empbuild\employee.fdb" user SYSDBA password masterkey;
The result is:
Statement failed, SQLSTATE = 28000 cannot attach to password database
After confirming that I had the correct path to the directories, I decided to continue connecting and try to create a new database:
SQL>CREATE DATABASE 'C:\data\test.fdb' page_size 8192 CON>user 'SYSDBA' password 'masterkey';
Which also gave me an error:
Statement failed, SQLSTATE = 08001 unavailable database
Are there any common mistakes that I can hit? I also tried the commands above, both with and without firebird service. Also have a detailed link to SQLSTATE codes?
Luke chamberlain
source share