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"
        csb.Pooling = False
        csb.DataSource = "localhost"
        Return csb.ToString()

On Thu, Dec 22, 2011 at 8:38 PM, Michael Powell <mwpowel...@gmail.com> wrote:
> 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>?
> Database=<localpath>?
>
> Thanks...
>
> Best regards,
>
> Michael
>
> ------------------------------------------------------------------------------
> Write once. Port to many.
> Get the SDK and tools to simplify cross-platform app development. Create
> new or port existing apps to sell to consumers worldwide. Explore the
> Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
> http://p.sf.net/sfu/intel-appdev
> _______________________________________________
> Firebird-net-provider mailing list
> Firebird-net-provider@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
>



-- 
Gerdus van Zyl
http://about.me/gerdus

------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to