Skip to main content

Interface: ParameterizedNamedSQL

react-querybuilder.ParameterizedNamedSQL

Object produced by formatQuery for the "parameterized_named" format.

Properties

params

params: Record<string, any>

Map of bind variable names from the sql string to the associated values.

Defined in

packages/react-querybuilder/src/types/importExport.ts:233


sql

sql: string

The SQL WHERE clause fragment with bind variable placeholders for each value.

Defined in

packages/react-querybuilder/src/types/importExport.ts:228