EsbGetString

Gets a string of data from the active database.

Syntax

EsbGetString (hCtx, getString, szString)
ByVal hCtx      As Long
ByVal getString As String
ByVal szString  As Integer
ParameterDescription

hCtx

VB API context handle.

getString

Buffer to receive a returned data string. Should be at least as large as the largest string generated by the server. Maximum string size: 256 KB.

szString

Size of the buffer to receive a returned data string.

Notes

Return Value

A data string is returned in getString. The function returns an empty string buffer if there is no more data to be returned.

Access

This function requires no special privileges.

Example

Declare Function EsbGetString Lib "ESBAPIN" (ByVal hCtx As Long, ByVal getString As String, ByVal szString As Integer) As Long

See the examples for EsbReport and EsbQueryDatabaseMembers.

See Also