Synclets logoSynclets

DatabaseDataConnectorOptions

The DatabaseDataConnectorOptions type configures the table and column names used for data storage in a database.

(
  {
    dataTable?: string;
    addressColumn?: string;
    atomColumn?: string;
  } &
  DataConnectorOptions<Depth>
)
TypeDescription
dataTable?string

The dataTable property specifies the table name for data storage.

addressColumn?string

The addressColumn property specifies the column name for address storage.

atomColumn?string

The atomColumn property specifies the column name for atom value storage.

These options allow you to customize the database schema used by database connectors (PGlite, SQLite3) for storing Atom data. You can specify custom table and column names to match existing schemas or naming conventions.

If not provided, connectors use sensible defaults (typically 'data' for the table name and standard column names for address parts and values).

Since

v0.0.0