I am trying to connect to Firebird database using BIML script, but I'm getting errors about not supported keywords like "DataSource". When I change them to "Data Source" it is supported, but then BIML tries to connect to Firebird database via sqlserver, which results in Named Pipes Provider, error: 40. My original .dtsx packages have Firebird Provider adonet connections configurated and are working as they should.
Is there any way I can connect to firebird in BIML or disable validation completely when generating a .dtsx package? DelayingValidation only delays it unfortunately.
My connection string in BIML:
<AdoNetConnection Name="FB" ConnectionString="user id=<user>;password=<password>;database=<databasefile>;DataSource=<server>;pooling=True;MinPoolSize=0;MaxPoolSize=30;enlist=False;connection lifetime=30;connection timeout=30;" RetainSameConnection="true" Provider="FirebirdSql.Data.FirebirdClient.FbConnection, FirebirdSql.Data.FirebirdClient, Version=6.1.0.0, Culture=neutral, PublicKeyToken=<token>" />