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 wrote: > I recommend using FbConnectionStringBuilder class and then inspecting > the resulting string. > >Dim csb As New > FirebirdSql.Data.FirebirdClient.FbConnectionStringBuilder() >c

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"