Provides access to a SQL result set.
For JSP targets you must assign a variable of the PSCursorClass type before you can create an instance of the object or call methods on it. To create an object of type PSCursorClass in ASP targets, you can designate an untyped variable to reference an instance of the object that is returned by the CreateCursor method on a PSConnectionClass object.
PSCursorClass( ResSet )
PSCursorClass constructor |
Datatype |
Description |
---|---|---|
ResSet |
ResultSet |
Result set object returned by the SQL query |
PSCursorClass method |
Description |
---|---|
Determines whether the end of a cursor has been reached |
|
Retrieves the number of columns in a cursor |
|
Retrieves the value of a column in a cursor (JSP targets) |
|
Retrieves the length of a column in a cursor (JSP targets) |
|
Retrieves the name of a column in a cursor (JSP targets) |
|
Retrieves the SQL type of a column in a cursor (JSP targets) |
|
Retrieves the database-specific type of a column in a cursor (JSP targets) |
|
Retrieves the number of decimal digits of a column in a cursor (JSP targets) |
|
Retrieves the result set for a cursor (JSP targets) |
|
Retrieves the metadata result set (JSP targets) |
|
Retrieves the number of rows in a cursor |
|
Retrieves the number of digits to right of the decimal point for a column in a cursor (JSP targets) |
|
Retrieves the value of a column in a cursor (ASP targets) |
|
Moves to an absolute row in a cursor |
|
Moves to the first row in a cursor |
|
Moves to the last row in a cursor |
|
Moves to the next row in a cursor |
|
Moves to the previous row in a cursor |