MCPcopy Index your code
hub / github.com/drizzle-team/drizzle-orm / execute

Function execute

drizzle-orm/src/sqlite-core/session.ts:181–186  ·  view source on GitHub ↗
(placeholderValues?: Record<string, unknown>)

Source from the content-addressed store, hash-verified

179 abstract values(placeholderValues?: Record<string, unknown>): Result<T['type'], T['values']>;
180
181 execute(placeholderValues?: Record<string, unknown>): ExecuteResult<T['type'], T['execute']> {
182 if (this.mode === 'async') {
183 return this[this.executeMethod](placeholderValues) as ExecuteResult<T['type'], T['execute']>;
184 }
185 return new ExecuteResultSync(() => this[this.executeMethod](placeholderValues));
186 }
187
188 mapResult(response: unknown, isFromBatch?: boolean) {
189 switch (this.executeMethod) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…