Node-DuckDB API > IDuckDBOptionsConfig
Options object type for the DuckDB class
Signature:
export interface IDuckDBOptionsConfig
Property | Type | Description |
---|---|---|
accessMode? | AccessMode | (Optional) Access Mode |
checkPointWALSize? | number | (Optional) Checkpoint Write Ahead Log Size (in bytes) |
collation? | string | (Optional) Collation |
defaultNullOrder? | OrderByNullType | (Optional) Default order for Null values |
defaultOrderType? | OrderType | (Optional) Default Order |
maximumMemory? | number | (Optional) Maximum memory limit for the databse (in bytes) |
temporaryDirectory? | string | (Optional) Location of the temporary directory |
useDirectIO? | boolean | (Optional) Whether to use Direct IO |
useTemporaryDirectory? | boolean | (Optional) Whether to use temporary directory to store data that doesn't fit in memory |