These pool viewers are type oriented versions of the sp_sql_get_field stored procedure.
sp_sql_get_char_field - This stored procedure is used for character fields.
The handle of the object from which you are retrieving the character field. |
|||
sp_sql_get_int_field - This stored procedure is used for integer fields.
The handle of the object from which you are retrieving the integer field. |
|||
sp_sql_get_float_field - This stored procedure is used for decimal fields.
The handle of the object from which you are retrieving the decimal field. |
|||
sp_sql_get_hdecimal_field - This stored procedure is used for decimal high fields.
The handle of the object from which you are retrieving the decimal high field. |
|||
sp_sql_get_date_field - This stored procedure is used for date fields.
The handle of the object from which you are retrieving the date field. |
|||
sp_sql_get_time_field - This stored procedure is used for time fields.
The handle of the object from which you are retrieving the time field. |
|||
NOTE: The following four procedures are the reverse of the set_memo and set_blob stored procedures mentioned below. They allow you to retrieve the contents of memo or file collector fields. They work with blocks of 8000 bytes. sp_sql_blob_xxxx procedures are recommended for manipulating text or image data. The procedures below are supported in order to provide compatibility with previous versions of SQL SDK.
sp_sql_get_memo_field - This stored procedure retrieves the first 8000 bytes of the memo field for the object specified in the handle parameter.
The handle of the object from which you are retrieving the memo field. |
|||
sp_sql_get_memo_field_part - This stored procedure retrieves the nth 8000 byte block of the memo field for the object specified in the handle parameter.
The handle of the object from which you are retrieving part of the memo field. |
|||
The variable receiving the nth 8000 byte block of the field value. |
sp_sql_get_blob_field - This stored procedure retrieves the first 8000 bytes of the file collection field for the object specified in the handle parameter.
The handle of the object from which you are retrieving the blob field. |
|||
sp_sql_get_blob_field_part - This stored procedure retrieves the nth 8000 byte block of the file collection field for the object specified in the handle parameter.
The handle of the object from which you are retrieving part of the blob field. |
|||
The variable receiving the nth 8000 byte block of the field value. |