Is there a way to connect to a MySQL DB from a PL/SQL stored procedure?
I want to query a MySQL table and get those records to a PL/SQL SYS_REFCURSOR or PL/SQL table.
Is this possible? I also want to IUD MySQL DB table rows from within a PL/SQL procedure.
How do you make the connection to a MySQL DB from within a PL/SQL procedure?
I know how to connect to MySQL from SQL Developer.
But this requirement is different. Here we want to do CRUD operations on MySQL DB from within PL/SQL.
Is this possible?