which trigger fires when we give execute query from menu? [message #235378] |
Sat, 05 May 2007 07:44 |
karthick2809
Messages: 50 Registered: April 2007 Location: Chennai
|
Member |
|
|
hi experts
i have designed a form using oracle 9i...
there are two fields,
emp_id text_item ---database item
branch_name display_item ---non database item
i have created an lov for branch_name named br_lov.
i have mapped branch_id(br_lov) to emp.emp_id and
branch_name(br_lov) to emp.branch_name
when is save it in database ,the branch_id gets stored..it works fine..no proble with it..
but when i give execute query only employee id is getting displayed...the nondatabase item branch_name is left empry..i want to display the branch_name in it..may i please know which trigger gets fired when we give execute_query...so that i wil write the corresponding code in it..
table structure:
---------------
create table emp(emp_id number primary key,branch_id number,);
create table branch(branch_id number primary key,branch_name varchar2(20));
thanks in advance
|
|
|
|
|
|