Home / Class/ AwsDataApiPgDatabase Class — drizzle-orm Architecture

AwsDataApiPgDatabase Class — drizzle-orm Architecture

Architecture documentation for the AwsDataApiPgDatabase class in driver.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  3bf910ce_0ffb_69fb_58f5_dd1e9d0033ce["AwsDataApiPgDatabase"]
  d4882ed1_0e96_6210_f61b_425eb48edf20["driver.ts"]
  3bf910ce_0ffb_69fb_58f5_dd1e9d0033ce -->|defined in| d4882ed1_0e96_6210_f61b_425eb48edf20
  a97f3a23_16ab_ecfa_3567_5cc89b8fe4ab["execute()"]
  3bf910ce_0ffb_69fb_58f5_dd1e9d0033ce -->|method| a97f3a23_16ab_ecfa_3567_5cc89b8fe4ab

Relationship Graph

Source Code

drizzle-orm/src/aws-data-api/pg/driver.ts lines 38–48

export class AwsDataApiPgDatabase<
	TSchema extends Record<string, unknown> = Record<string, never>,
> extends PgDatabase<AwsDataApiPgQueryResultHKT, TSchema> {
	static override readonly [entityKind]: string = 'AwsDataApiPgDatabase';

	override execute<
		TRow extends Record<string, unknown> = Record<string, unknown>,
	>(query: SQLWrapper | string): PgRaw<AwsDataApiPgQueryResult<TRow>> {
		return super.execute(query);
	}
}

Domain

Frequently Asked Questions

What is the AwsDataApiPgDatabase class?
AwsDataApiPgDatabase is a class in the drizzle-orm codebase, defined in drizzle-orm/src/aws-data-api/pg/driver.ts.
Where is AwsDataApiPgDatabase defined?
AwsDataApiPgDatabase is defined in drizzle-orm/src/aws-data-api/pg/driver.ts at line 38.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free