Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Select into apex page item

user5108636May 11 2018 — edited May 11 2018

Using APEX 5.1.3 with universal theme.

In my PLSQL procedure I want to populate  two apex page items through a SQL query, something like below

procedure test is

begin

select id, name, phone into :P100_ID, :P100_NAME, :P100_PHONE from emp e  where e.join_year = v('P100_JOIN_YEAR');

end;

I am not sure if it's the syntax that is the issue or something else.

Getting error PLS-00049: bad bind variable 'P100_ID'

bad bind variable 'P100_NAME'

bad bind variable 'P100_PHONE'

Please advise.

This post has been answered by fac586 on May 11 2018
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jun 8 2018
Added on May 11 2018
4 comments
529 views