This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Returns the specified ADODB_Recordset as a string.
Syntax
s = <ADODB_Recordset>.GetString ([lFormat [, nRec [, sColDelim [, sRowDelim [, nullexpr]]]]])
Returns
String.
Parameters
Name |
Type |
Optional |
Meaning |
lFormat |
Number |
Yes |
A value that specifies the format when retrieving a Recordset as a string
Use %adClipString (2) to delimits rows by the sRowDelim parameter, columns by the sColDelim parameter, and null values by the nullexpr parameter
|
nRec |
Number |
Yes |
The number of rows to be converted in the Recordset |
sColDelim |
String |
Yes |
If lFormat is set to %adClipString it is a column delimiter. Otherwise it is the tab character |
sRowDelim |
String |
Yes |
If lFormat is set to %adClipString it is a row delimiter. Otherwise it is the carriage return character |
nullexpr |
String |
Yes |
If lFormat is set to %adClipString it is an expression used instead of a null value. Otherwise it is an empty string |
Remarks
Restrictions
See also
Examples