Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.CaseEndBuilder

Kysely dialect for PostgreSQL using the Postgres.js client.
Latest
class kysely.CaseEndBuilder
implements Endable<DB, TB, O>
import { kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.4/deps.ts";
const { CaseEndBuilder } = kysely;

Constructors

new
CaseEndBuilder(props: CaseBuilderProps)

Type Parameters

DB
TB extends keyof DB
O

Methods

Adds an end keyword to the case operator.

case operators can only be used as part of a query. For a case statement used as part of a stored program, use endCase instead.

Adds end case keywords to the case statement.

case statements can only be used for flow control in stored programs. For a case operator used as part of a query, use end instead.