Skip to content

@tsdrivers/mssql / BlobTarget

Interface: BlobTarget

Defined in: projects/ts-mssql/core/blob.ts:26

Identifies the VARBINARY(MAX) column and row to stream.

Properties

chunkSize?

optional chunkSize: number

Defined in: projects/ts-mssql/core/blob.ts:36

Chunk size in bytes for streaming. Default: 1 MB.


column

column: string

Defined in: projects/ts-mssql/core/blob.ts:30

VARBINARY(MAX) column name (use bracket escaping if needed).


params?

optional params: Record<string, unknown>

Defined in: projects/ts-mssql/core/blob.ts:34

Parameters for the WHERE clause.


table

table: string

Defined in: projects/ts-mssql/core/blob.ts:28

Table name (use bracket escaping for special characters, e.g. "[dbo].[MyTable]").


where

where: string

Defined in: projects/ts-mssql/core/blob.ts:32

WHERE clause identifying the row (e.g. "id = @id").