Host Variables
HP NonStop SQL/MP Programming Manual for C—429847-008
2-10
Structures
To use a field as a host variable in an SQL statement, refer to the field by using the
structure name:
EXEC SQL SELECT empid, empname
INTO :employee_info.empid, :employee_info.empname
... ;