MCPcopy Create free account
hub / github.com/damms005/devdb-vscode / getRows

Method getRows

src/database-engines/postgres-engine.ts:168–170  ·  view source on GitHub ↗
(table: string, columns: Column[], limit: number, offset: number, whereClause?: Record<string, any>)

Source from the content-addressed store, hash-verified

166 }
167
168 async getRows(table: string, columns: Column[], limit: number, offset: number, whereClause?: Record<string, any>): Promise<QueryResponse | undefined> {
169 return SqlService.getRows(this, 'postgres', this.connection, table, columns, limit, offset, whereClause);
170 }
171
172 async getVersion(): Promise<string | undefined> {
173 return undefined

Callers

nothing calls this directly

Calls 1

getRowsMethod · 0.65

Tested by

no test coverage detected