Hi,
I have a problem to connect with a SQL DB. When I try to send some data from AX I get this error "Exception has been thrown by the target of an invocation.[DBNETLIB[ConnectionOpen (Connect()).SQL Server does not exist or access denied. Invalid connection string attribute"
This code works already on PROD the problem I can't test new modifications for it on local machine. Any idea how to overcome it ?
connectStr = strFmt('Provider=%1;DRIVER=%2;SERVER=%3;Database=%4;Uid=%5;Pwd=%6;Trusted_Connection=no;'
,Parameters.SQLProvider
,Parameters.SQLDriver
,Parameters.SQLServerName
,Parameters.SQLServerDatabase
,Parameters.SQLUserName
,pass);