Transact


Transact_Select
(SWI &4FC05)


Builds a result set for future reading by the client's application, the way the result set is built depends on the session's transaction mode (DIRTY_READ, READ_COMMITED ou READ_REPEATABLE1).

On entry

On exit

Possible errors

Additional note

Typically the sequence of calls to submit to the engine foolows this scheme:
  1. Call Transact_Select or Transact_SelectForUpdate once to build the result set;
  2. Depending about the amount of data involved in the Transact_Select operation, call as many Transact_Fetch request as necessary;
  3. As you have read all the data in the result set or before that (meaning the application is not interested any more in the result set data), call Transact_AllDone to renitialize the result set to a state ready for a subsequent Transact_Select request.