Query in an oracle form. [message #203459] |
Wed, 15 November 2006 03:46 |
highvoltage
Messages: 12 Registered: October 2006 Location: Singapore
|
Junior Member |
|
|
Guys please advice.
I am creating a form in oracle developer suite.
On my form there is a search button.
When i insert the student_id the search button is to return values in the respective field.
Not sure how the query goes into the oracle search button PL/SQL editor
Select * from STUDENT
Where Stud_id = :ADDSTUDENT_BLOCK.Stud_id;
Into
(
:ADDSTUDENT_BLOCK.Stud_id,
:ADDSTUDENT_BLOCK.Stud_gname,
:ADDSTUDENT_BLOCK.Stud_fname,
:ADDSTUDENT_BLOCK.Stud_DOB,
:ADDSTUDENT_BLOCK.Stud_sex,
:ADDSTUDENT_BLOCK.Stud_finloan,
:ADDSTUDENT_BLOCK.Stud_address,
:ADDSTUDENT_BLOCK.Stud_town,
:ADDSTUDENT_BLOCK.Stud_street,
:ADDSTUDENT_BLOCK.Stud_poscode,
:ADDSTUDENT_BLOCK.Stud_contact,
:ADDSTUDENT_BLOCK.nok,
:ADDSTUDENT_BLOCK.nok_contact,
:ADDSTUDENT_BLOCK.nok_relation
);
Please advice.
|
|
|
|
|
|
|
|
|
|