ZERO_BLOB

Represents the SQLite zeroblob(N) function.

This function returns a BLOB value consisting of N bytes of 0x00. SQLite uses this to reserve space for a BLOB that can be written to later using incremental I/O.

Return

A KQLiteColumn of type ByteArray containing a blob of N zero-bytes.

Author

MOHAMMAD AZIM ANSARI

Parameters

bytes

The column specifying the number of zero bytes in the blob. The value must be an integer.

See also