Hello, I want to create a connection between my NAV 2018 and external DB MySQL . I just need a basic connection message when the connection is built successfully.
Look at Microsoft ActiveX Data Objects automation objects. You will find a Connection object there:
ADOConn : 'Microsoft ActiveX Data Objects 2.8 Library'.Connection
IF ISCLEAR(ADOConn) THEN
CREATE(ADOConn);
ADOConn.Open(ConnectionString);// check www.connectionstrings.com/mysql/ for connection string syntax
Edit
the above is for NAV 2009 of former, Classic Client, for NAV 2018 please post in correct forum
Look at Microsoft ActiveX Data Objects automation objects. You will find a Connection object there:
ADOConn : 'Microsoft ActiveX Data Objects 2.8 Library'.Connection
IF ISCLEAR(ADOConn) THEN
CREATE(ADOConn);
ADOConn.Open(ConnectionString);// check www.connectionstrings.com/mysql/ for connection string syntax
Edit
the above is for NAV 2009 of former, Classic Client, for NAV 2018 please post in correct forum
Thanks for the reply but when i am doing exactly the same but while compiling i get the error that "You cannot create and AUtomation object "ADOConnection" on Microsoft Dynamics NAV Serevr. You must create it on a client computer."
Answers
Edit
the above is for NAV 2009 of former, Classic Client, for NAV 2018 please post in correct forum
Dynamics NAV, MS SQL Server, Wherescape RED;
PRINCE2 Practitioner - License GR657010572SG
GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-03
Thanks for the reply but when i am doing exactly the same but while compiling i get the error that "You cannot create and AUtomation object "ADOConnection" on Microsoft Dynamics NAV Serevr. You must create it on a client computer."
Thank you for the reply. Can you please give me the syntax as well like how to create after downloading .
Dynamics NAV, MS SQL Server, Wherescape RED;
PRINCE2 Practitioner - License GR657010572SG
GDPR Certified Data Protection Officer - PECB License DPCDPO1025070-2018-03
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!