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_export_sql(const from, sql_table: string): string;

Arguments:

from SDS table path
sql_table Destination SQL table

Description:

Exports SDS table as SQL (MySQL) table dump script. Result script is optimized for importing only into MySQL. SDS also will successfully import it, but sds_export_sds suits SDS better. Other SQL databases won't understand it right.

Returns:

SQL table dump script.

Usage:

s := sds_export_sql('test.sds');

See also:

sds_export_csv, sds_export_sds, sds_export_xml, sds_import_sql.

PSP Help documents