[Firebird-net-provider] How to build Firebird connection string

2011-12-22 Thread Michael Powell
Hello, We're using the Firebird .NET provider and I want to build a connection string; of itself, connection string not so bad, however, I want to build one to a remote machine running the Firebird server. In which case I provide properties like: DataSource=ipaddress/? Port=portnumber?

Re: [Firebird-net-provider] How to build Firebird connection string

2011-12-22 Thread Gerdus van Zyl
I recommend using FbConnectionStringBuilder class and then inspecting the resulting string. Dim csb As New FirebirdSql.Data.FirebirdClient.FbConnectionStringBuilder() csb.Database = C:/databases/server.fdb csb.UserID = SYSDBA csb.Password = badpassword

Re: [Firebird-net-provider] How to build Firebird connection string

2011-12-22 Thread Michael Powell
Handy helper class, that. Yessir, thank you... On Thu, Dec 22, 2011 at 12:08 PM, Gerdus van Zyl gerdusvan...@gmail.comwrote: I recommend using FbConnectionStringBuilder class and then inspecting the resulting string. Dim csb As New