Click or drag to resize
SQLiteValueZeroBlob Method
Create a SQLite zeroblob of the specified length.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public static ISQLiteValue ZeroBlob(
	int length
)

Parameters

length
Type: SystemInt32
The length of the zero blob

Return Value

Type: ISQLiteValue
An ISQLiteValue representing the zero blob.
Remarks
This method does not allocate any memory, therefore the zero blobs can safely be of arbitrary length.
See Also