Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connect to Interbase 5.5 with Firebird 1

Status
Not open for further replies.

dls830

Programmer
Jan 18, 2005
2
0
0
US
I have the InterBase 5.5 .dbf and .gdb files, but don't have InterBase 5.5 installed. I've installed Firebird, but don't know how to connect to the files with it. Can anyone help me get started?

Thanks.
 
Go to your Firebird installation directory (C:\ProgramFiles\Firebird\Firebird_1_5 ?), then to the bin\ subdirectory. You'll find a program named isql.exe there, run it. You'll see a SQL console.
I assume you're connecting to local server. To connect issue a command:

SQL> CONNECT localhost:c:\path\to\your\base.gdb
SQL> user 'username' pass 'password';

Since you installed Firebird and probably haven't changed anything use 'SYSDBA' as username and 'masterkey' as password.

After connection you'll see info line:
Database: localhost:c:\path\to\your\base.gdb, User: SYSDBA
which means you may work with the database.

Hope this helps
Michael
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top