Icon Export Method

procedure Export(const ExportFile: String; const StoreName:
      String; const ColumnsToExport: TEDBStringsArray=nil; Format:
      TEDBFileFormat=ffDelimited; Encoding: TEDBFileEncoding=feAuto;
      DelimiterChar: Char=SEPARATOR; QuoteChar: Char=DOUBLE_QUOTE;
      const DateFormatStr: String=ANSI_DATE_FORMAT; const
      TimeFormatStr: String=ANSI_TIME_FORMAT; const AMStr:
      String=ANSI_12HOUR_AM; const PMStr: String=ANSI_12HOUR_PM;
      DecimalChar: Char=ANSI_DECIMAL_SEPARATOR; const TrueStr:
      String=ANSI_TRUE; const FalseStr: String=ANSI_FALSE;
      IncludeHeaders: Boolean=False; MaxRows: Integer=-1)

Use this method to export the rows in a dataset to a delimited or XML file.

Information This method is defined as a way to provide for the exporting of result sets, and is simply a method version of the SQL EXPORT TABLE statement in ElevateDB. Please consult the ElevateDB SQL Manual for more information on the various export options available in the EXPORT TABLE statement.
Image