MCPcopy Create free account
hub / github.com/microsoft/AI-Engineering-Coach / sqliteQueryAsync

Function sqliteQueryAsync

src/core/parser-xcode.ts:100–102  ·  view source on GitHub ↗
(dbPath: string, sql: string)

Source from the content-addressed store, hash-verified

98}
99
100function sqliteQueryAsync(dbPath: string, sql: string): Promise<string> {
101 return sqliteExecAsync(dbPath, ['-json', dbPath, sql]);
102}
103
104/** Fast Turn query that avoids sqlite3's slow -json serialization.
105 * Uses raw output with unit separator (\\x1f) between columns and

Callers 1

parseXcodeDatabasesAsyncFunction · 0.85

Calls 1

sqliteExecAsyncFunction · 0.85

Tested by

no test coverage detected