Firebird database alias connection string not working #8814
-
|
On a Windows 10 pro 64 -bit PC I am trying to connect to a Firebird 2.1.3 database from foxpro. I am able to connect it using the next code: However, when I am trying to use an alias defined in aliases.conf (newsal = d:#acces\newsal.fdb) I am getting "File database is not found": Can you please tell me what I am doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
|
In the first place, However, the |
Beta Was this translation helpful? Give feedback.
-
|
In short, if you want to define an alias, the path should not contain a In Firebird 2.5 and higher, you can enclose the value in double quotes ( |
Beta Was this translation helpful? Give feedback.
-
|
Thank you |
Beta Was this translation helpful? Give feedback.
In short, if you want to define an alias, the path should not contain a
#.In Firebird 2.5 and higher, you can enclose the value in double quotes (
newsal = "d:\#acces\newsal.fdb"), which will make the parser not consider the#the start of a comment and ignore the rest of the line. That is not available in Firebird 2.1.