<ADODB_Connection>.LookUpField.Next

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > ADODB > ADODB Module Classes > ADODB_Connection > ADODB_Connection Methods > <ADODB_Connection>.LookUpField >

<ADODB_Connection>.LookUpField.Next

 

Description

 
IMPORTANT: This method is to be executed after a call to <ADODB_Connection>.LookUpField

Search for a specific field value after making a call to <ADODB_Connection>.LookUpField

<ADODB_Connection>.LookUpField will store previous search parameters is order to be able to make consecutive field value data retrieve having the same Table, Where and OrderBy clause

 

Syntax

 

s = <ADODB_Connection>.LookUpField.Next (sFieldName)

 

Returns

 

String.

 

Parameters

 

Name

Type

Optional

Meaning

sFieldName

String

No

Name of a field to get data from

 

Remarks

 

This function is not a standard ADODB function but a personalized thinBasic function.

<ADODB_Connection>.LookUpField will store previous recordset look up Table, Where and OrderBy data in order to be able to make consecutive field searches if needed

 

Restrictions

 

IMPORTANT: This method is to be executed after a call to <ADODB_Connection>.LookUpField

<ADODB_Connection>.LookUpField will store previous recordset look up Table, Where and OrderBy data in order to be able to make consecutive field searches if needed

 

See also

 

Examples