Subject Re: Connect to Sample FDB
Author Adam
--- In firebird-support@yahoogroups.com, "Richard Thomas"
<rthomas@...> wrote:
>
> Hi All:
>
> Well, I've tried to connect to the employee.fbd with no luck so far:
>
> Here is an abstract of what I did:

The following should get you into iSQL with the employee database.

Start -> Run

"C:\Program Files\Firebird\Firebird_1_5\bin\isql.exe"
"localhost:c:\Program
Files\Firebird\Firebird_1_5\examples\EMPLOYEE.FDB" -u sysdba -p masterke

(The above is a single line, it just wraps)

It should let you in which will look something like:

SQL>

Now each command can span several lines, so to let iSQL know you want
it to execute, use a semi-colon (;)

For example, you could run

select * from country;

To leave the iSQL session, type

Exit;

And you will be returned to wherever you launched it from.

Adam