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

x/kysely_postgrs_js_dialect/mod.ts>kysely.MssqlIntrospector

Kysely dialect for PostgreSQL using the Postgres.js client.
Latest
class kysely.MssqlIntrospector
implements DatabaseIntrospector
import { kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.4/mod.ts";
const { MssqlIntrospector } = kysely;

Constructors

new
MssqlIntrospector(db: Kysely<any>)

Methods

deprecated
getMetadata(options?: DatabaseMetadataOptions): Promise<DatabaseMetadata>

Get the database metadata such as table and column names.

getSchemas(): Promise<SchemaMetadata[]>

Get schema metadata.

getTables(options?: DatabaseMetadataOptions): Promise<TableMetadata[]>

Get tables and views metadata.