Subject Re: [firebird-python] Re: How to use PowerConsole?
Author Alexandr N Zamaraev
29.12.2009 19:18, Dobedani wrote:
> I tried this behind the PowerConsole prompt:
> CONNECT 'C:\Data\REGDB.fdb' host localhost user SYSDBA password xxxxx
>
> All the thing is telling me is: SyntaxError: invalid syntax
Maybe
CONNECT 'C:\\Data\\REGDB.fdb' host localhost user SYSDBA password xxxxx
or
CONNECT r'C:\Data\REGDB.fdb' host localhost user SYSDBA password xxxxx

PowerConsole - python shell.
And strings mast be python string.