I am developing an Oracle ADF web application using jDeveloper. For that am using
- jDeveloper
- MySql database
- Integrated WebLogic (which came with jDeveloper)
So am trying to Create a Query-only Business Service Based on Parameters. For this I need to create a query which will take values at run time.
I am following a tutorial in that they gave(because tutorial followed oracle) oracle equivalent query
select first_name,last_name from employees where email=:p_mail
But I need mysql query equivalent to the above (because I am following MySql DB).