From:
<car...@te...> - 2003-12-11 09:57:28
|
Hello: > I would like to make a connection to a remote to a firebird database > server. I have been happily using the existing .net provider for local > access or access on the same LAN. > > Not I wish to make a remote connection to a server that exists on the > internet. > > Does anybody have an example of a connection string I can use. You need to give the server name in the DataSource element of the connection string and the port number that is being used by the Firebird Server. User=SYSDBA;Password=masterkey;Database=C:\SampleDatabase.fdb;DataSource=Firebird_Server; Port=3050;Dialect=3;Charset=ISO8859_1;Role=; Connection lifetime=15;Pooling=true;Packet Size=8192 -- Best regards Carlos Guzmán álvarez Vigo-Spain |