Name

SQLITE_DEFAULT_PAGE_SIZE — Default database page size

Common Usage

SQLITE_DEFAULT_PAGE_SIZE=bytes

Default

1024 bytes

Description

Sets the default page size of a database in bytes. Values must be a power-of-two value between 512 and SQLITE_MAX_PAGE_SIZE, which defaults to 32 KB (and is the maximum value supported). Possible values include: 512, 1024, 2048, 4096, 8192, 16384, or 32768.

See Also

SQLITE_MAX_PAGE_SIZE, page_size [PRAGMA, Ap F]