Export .odb tables to xlsx
odb_to_xlsxConvert an embedded .odb database to an xlsx workbook, extracting each table into its own sheet for easy spreadsheet analysis.
Instructions
Extracts every table an embedded .odb database declares into one xlsx workbook, one sheet per table.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| output | No | Where to write the resulting xlsx workbook. Omit entirely (or omit outputPath within it) to receive the bytes inline instead. | |
| source | Yes | .odb database to read. 'path' points at the .odb file on disk -- its extension is never used to infer a document format, since documents.js deliberately excludes 'odb' from DocumentFormat (an embedded database front end has no single natural target format -- tables, saved queries, and reports are three unrelated output shapes -- see that package's own README). 'bytesBase64' carries the .odb bytes inline; its 'format' field is required by the shared hybrid input shape but unused by every odb tool. |