Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.SqliteIntrospector

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

Constructors

new
SqliteIntrospector(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.