Hyperlinkv0.8.0-beta.28

SqliteClient

SqliteClient.SqliteClientConfiginterfacerepos/effect/packages/sql/sqlite-node/src/SqliteClient.ts:90
SqliteClientConfig

Configuration for a node SQLite client backed by node:sqlite, including the database filename, read-only mode, statement cache settings, WAL behavior, span attributes, and query/result name transforms.

models
export interface SqliteClientConfig {
  readonly filename: string
  readonly readonly?: boolean | undefined
  readonly prepareCacheSize?: number | undefined
  readonly prepareCacheTTL?: Duration.Input | undefined
  readonly disableWAL?: boolean | undefined
  readonly spanAttributes?: Record<string, unknown> | undefined

  readonly transformResultNames?: ((str: string) => string) | undefined
  readonly transformQueryNames?: ((str: string) => string) | undefined
}
Referenced by 4 symbols