I would like to know can I connect to MySQL from Oracle forms? if yes would you put and example for me?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I suggest creating a database link in your Oracle DB that points at your MySQL DB. Then you can write queries such as this:
select * from oracle_table_1, mysql_table@mysql_link;
This document appears to have some helpful information on how to set all this up; apparently this isn’t the simplest of tasks.