ADODataSet.FetchForward


public function FetchForward

Prototype:

number FetchForward();

Description:

This function should be used only when working with MySQL and tables that contain big text fields. A bug in MySQL will cause to return empty strings when trying to acquire data from such a field. In any other case you should consider using Next and First.

This function is used for compatibility only. Datasets that use this function WILL NOT BE ABLE to link to an object (via the DataSet property).

Another work around for this MySQL problem is to change the field type from TEXT to CLOB.

Return value:

Returns non-zero in case of success or 0 in case of error.