At 09:02 AM 13/02/2012, Thomas Steinmaurer wrote: >Try: > >isql 'localhost:C:\Program Files >(x86)\Firebird\Firebird_1_5\examples\employee.fdb' -user 'sysdba' >-password 'masterkey'
Syntax is wrong here, Thomas. The parameters must not be enclosed in single quotes. However, the connection string almost certainly needs to be in double quotes, because of the space and the brackets in the path. Try: isql "localhost:C:\Program Files (x86)\Firebird\Firebird_1_5\examples\employee.fdb" -user sysdba -password masterkey ./heLen
