Chapter 9 SQL Statements
583
Inserting into a cursor
When inserting into a cursor, the position of the inserted row is
unpredictable. If the cursor is INSENSITIVE, the row appears. Otherwise,
it does not show up in the current cursor at all.
$ For information on putting LONG VARCHAR or LONG BINARY
values into the database, see "SET statement" on page 605.
♦
SQL/92 Entry level feature.
♦
Sybase Supported by Open Client/Open Server.
♦ The following statement illustrates the use of PUT in Embedded SQL:
EXEC SQL PUT cur_employee FROM :emp_id, :emp_lname;
Standards and
compatibility
Example