This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

function sds_result_eof(rp: SDS_Result): boolean;

Arguments:

rp Result pointer

Description:

Tells whether SDS result rowset pointer is at the end of file (rowset).

Returns:

TRUE at rowset and, FALSE otherwise.

Usage:

while not sds_result_eof(rp) do
	begin
		row := sds_fetch_row(rp);
		// Some actions
		sds_free_row(row);
	end;

See also:

sds_query.

PSP Help documents