Connecting from Dynamics AX to Outside Database

By Becky Newell | May 4, 2015

I have been asked a few times if Dynamics AX can connect to non-AX databases and the answer is yes.  You do this is by creating an ODBC data source in the control panel that connects to the external database.  Once the connection has been created, in X++ there are classes that can utilize the data source and make the call out to the other database.

Here is an example of how to use your ODBC data source:

public boolean performOperationOnExternalDatabase(str _sqlStatementToExecute)

{

LoginProperty loginProperty;

OdbcConnection odbcConnection;

Statement statement;

int insertedRowCount;

boolean success = false;

SqlStatementExecutePermission permission;

loginProperty = new LoginProperty();

loginProperty.setDSN(“ODBCDsnName”);

loginProperty.setDatabase(“DatabaseName”);

odbcConnection = new OdbcConnection(loginProperty);

if(odbcConnection)

{

permission = new SqlStatementExecutePermission(_sqlStatementToExecute);

permission.assert();

statement = odbcConnection.createStatement();

insertedRowCount = statement.executeUpdate(sqlStatementToExecute);

statement.close();

if(insertedRowCount >  0)

{

success = true;

}

}

else

{

error(“Failed to connect to database”);

}

return success;

}


Under the terms of this license, you are authorized to share and redistribute the content across various mediums, subject to adherence to the specified conditions: you must provide proper attribution to Stoneridge as the original creator in a manner that does not imply their endorsement of your use, the material is to be utilized solely for non-commercial purposes, and alterations, modifications, or derivative works based on the original material are strictly prohibited.

Responsibility rests with the licensee to ensure that their use of the material does not violate any other rights.

Start the Conversation

It’s our mission to help clients win. We’d love to talk to you about the right business solutions to help you achieve your goals.

Subscribe To Our Blog

Sign up to get periodic updates on the latest posts.

Thank you for subscribing!