Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SqlParameter

import type { SqlParameter } from "https://aws-api.deno.dev/v0.3/services/redshiftdata.ts?docs=full";

A parameter used in a SQL statement.

interface SqlParameter {
name: string;
value: string;
}

§Properties

§
name: string
[src]

The name of the parameter.

§
value: string
[src]

The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more inforation, see Data types in the Amazon Redshift Database Developer Guide.