Today I will demonstrate you that how to establish ODBC connection and use that for reading data in AX. static void ReadOdbc(Args _args) { OdbcConnection connection; LoginProperty loginProp; Statement statement; ResultSet result; str sqlStmt; SqlStatementExecutePermission permission; ; loginProp = new LoginProperty(); // Set the servername and database to the LoginProperty object loginProp.setServer("SEA-DEV"); loginProp.setDatabase("MicrosoftDynamicsAX"); // Check to see if the...(read more)
↧