Artículo técnico

HotXLS: database export to spreadsheet reports in Delphi

Cree, edite, inspeccione, calcule y exporte libros de Excel directamente desde código Delphi o C++Builder. HotXLS es una biblioteca nativa Object Pascal para XLS y XLSX, disenada para herramientas de escritorio, trabajos por lotes, informes y generacion de documentos sin automatización de Microsoft Excel.

Este artículo está dirigido a teams moving datasets from Delphi applications into customer-ready workbook reports. Presenta database export to spreadsheet reports como una práctica de ingeniería documental para producción, no como una llamada aislada al componente.

El riesgo principal es que a dataset dump is not a report when type conversion, null handling, totals, grouping, sorting, and workbook styling are not part of the export contract. Por eso el flujo necesita contrato escrito, diagnósticos observables y archivos de regresión reales.

Decisiones de arquitectura

Treat the dataset schema as a workbook contract. field-to-column mapping, captions, order, grouping, and sort rules / null, date, time zone, currency, decimal, and Boolean formatting

  • field-to-column mapping, captions, order, grouping, and sort rules
  • null, date, time zone, currency, decimal, and Boolean formatting
  • formula totals, subtotals, filters, frozen panes, and table-like navigation
  • streaming, pagination, and memory policy for large result sets

Flujo de implementación

Map database fields to worksheet semantics. The order below keeps the workflow reviewable for Delphi and C++Builder teams.

  1. derive an export profile from the report requirement and dataset schema
  2. validate field types and required columns before creating the workbook
  3. write headers, formats, and formulas before streaming large row groups
  4. apply filters, freeze panes, totals, and page setup after the data range is known
  5. compare row counts and key aggregates with the source query

Evidencia de validación

Export diagnostics for support and finance teams. Keep these fields with the output or support record.

  • query identifier, field mapping, row count, column count, and export profile
  • null and data-type conversions, locale profile, and formula summary
  • source aggregate totals compared with workbook totals
  • warnings for truncated text, unsupported types, or memory-limit fallback

Types matter more than cell values

Database export needs explicit mapping from field types to worksheet cells, number formats, formulas, totals, and visible labels. Without that mapping, users receive a workbook that looks correct but behaves poorly in analysis.

Notas de implementación para producción

Trata HotXLS: database export to spreadsheet reports in Delphi como un contrato de servicio claro alrededor de las llamadas a HotXLS, separando validación de entrada, escritura del libro, comprobación de salida y evidencias de soporte

  • Define origen de datos, rangos de celdas y formato de salida antes de crear el libro
  • Registra filas, hojas, advertencias y ruta de salida en una evidencia revisable
  • Encapsula los detalles propios de la aplicación en helpers comprobables, no en eventos de interfaz
  • Vuelve a abrir o inspecciona el archivo guardado antes de entregarlo a otro sistema o al cliente

Fallos que conviene ensayar

  • Que SaveAs devuelva éxito no demuestra que el contrato de negocio siga siendo correcto
  • Fuentes, permisos y configuración regional pueden cambiar entre servidor y equipo de desarrollo
  • Los logs no deben exponer contraseñas, datos de clientes ni enlaces internos

Ejemplo Delphi detallado

El siguiente ejemplo Delphi muestra una frontera de servicio práctica para este tema y mantiene políticas, registro y validación en una capa comprobable

procedure ExportCustomerReport(DataSet: TDataSet; const OutputFile: string);
var
  Wb: TXLSXWorkbook;
  Sh: IXLSWorksheet;
  RowIndex: Integer;
begin
  RequireOpenDataSet(DataSet);
  Wb := TXLSXWorkbook.Create;
  try
    Sh := Wb.Sheets[0];
    Sh.Name := 'Customers';
    WriteHeaderRow(Sh, ['CustomerId', 'Name', 'Region', 'Balance', 'LastOrder']);

    RowIndex := 2;
    DataSet.First;
    while not DataSet.Eof do
    begin
      Sh.Range['A' + IntToStr(RowIndex)].Value := DataSet.FieldByName('CustomerId').AsString;
      Sh.Range['B' + IntToStr(RowIndex)].Value := DataSet.FieldByName('Name').AsString;
      Sh.Range['C' + IntToStr(RowIndex)].Value := DataSet.FieldByName('Region').AsString;
      Sh.Range['D' + IntToStr(RowIndex)].Value := DataSet.FieldByName('Balance').AsCurrency;
      Sh.Range['E' + IntToStr(RowIndex)].Value := DataSet.FieldByName('LastOrder').AsDateTime;
      Inc(RowIndex);
      DataSet.Next;
    end;

    Sh.Range['A1:E1'].ApplyBuiltinStyle(xbsTitle);
    ApplyDateAndCurrencyFormats(Sh, RowIndex - 1);
    AddAutoFilterToHeader(Sh, 'A1:E' + IntToStr(RowIndex - 1));
    WriteExportManifest(Wb, DataSet, RowIndex - 2);

    if Wb.SaveAs(OutputFile) <> 1 then
      RaiseWorkbookSaveError(OutputFile);
  finally
    Wb.Free;
  end;
end;

Lista de salida a producción

  • Run the workflow on an empty workbook, a normal customer workbook, and a worst-case workbook
  • Open the output with the target spreadsheet application or downstream importer
  • Log product version, template version, profile, row count, output path, elapsed time, and warning count
  • Keep passwords, temporary files, customer data, and support bundles under explicit retention rules
  • Add regression workbooks when a customer file exposes a new edge case

Product documentation

HotXLS Component