Hi All,
I installed the MySQL connector but unable to find driver on ODBC.
Please help what I am doing wrong.
Regards
AN
Hi All,
I installed the MySQL connector but unable to find driver on ODBC.
Please help what I am doing wrong.
Regards
AN
in your connection wizard select the âSystem.Data.Odbcâ
connection string
âDsn=;uid=;pwd=â
your data source name- RPA as per the screenshot
username -RPA
This is my connection stringâŚ
âserver=âxx.xx.xx.xxâ; DSN=âABCâ;UID=âRPAâ; PASSWORD=â*********â; DATABASE=âReportâ; PORT=â3306â;â
Getting this error while compilingâŚ
âmessageâ: âConnect: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specifiedâ
thats your odbc connection string .
in UiPath add following connection string and replace the password and give a try.
âDsn=(RPA);uid=(RPA);pwd=(*password)â
Not workingâŚ
âserver=xx.xx.xx.xx;Dsn=ABC;Uid=RPA;pwd=*********;DATABASE=Report;PORT=3306â
Can you please send a sample connection string for UiPath?
Thanks
Hello @anand.t
You should simply define the DSN, UID and PWD:
"Dsn="+str_SQL_DSN+";uid=" + str_SQL_Username + ";pwd=" + str_SQL_Password
Regards
Soren
Hi @Achiranga
Please tell me what version of database activity you are using. I am unable to get per your screenshots. The below I am using.
If this is a Windows type project, then it requires the 64bit drivers to work I believe. You might be able to verify this by trying what youâve already tried, but on a legacy project.
Otherwise youâll have to install the 64bit drivers.
Its working thanks
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.