Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

Microsoft SQL Server FETCH – PB Docs 2019 – PowerBuilder Library

Microsoft SQL Server FETCH – PB Docs 2019

Microsoft
SQL Server FETCH

To access rows returned in a result set, you use the FETCH statement
the same way you use it for cursors. The FETCH statement can be executed
after any EXECUTE statement that refers to a procedure that returns a
result set.

Example 1

You can use this FETCH statement only to access values produced with
a SELECT statement in a database stored procedure. You cannot use the
FETCH statement to access computed rows.

Database stored procedures can return multiple result sets. Assume
you define a database stored procedure proc2 as follows:

PowerBuilder provides access to both result sets:

The result sets that will be returned when a database stored
procedure executes cannot be determined at compile time. Therefore, you
must code FETCH statements that exactly match the format of a result set
returned by the stored procedure when it executes.

Example 2

In the preceding example, if instead of coding the second fetch
statement as:

you coded it as:

the statement would compile without errors. But an execution error
would occur: the number of columns in the FETCH statement does not match
the number of columns in the current result set. The second result set
returns values from only one column.

See also

Microsoft SQL Server FETCH
NEXT

Microsoft SQL Server FETCH
FIRST, FETCH PRIOR, and FETCH LAST


Document get from Powerbuilder help
Thank you for watching.
Was this article helpful?
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x