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

Method escapeIdentifier

src/database-engines/sqlite-engine.ts:593–596  ·  view source on GitHub ↗
(identifier: string)

Source from the content-addressed store, hash-verified

591 }
592
593 private escapeIdentifier(identifier: string): string {
594 // SQLite identifiers can be escaped with double quotes
595 return `"${identifier.replace(/"/g, '""')}"`;
596 }
597
598 destroy() { }
599}

Callers 4

getColumnsMethod · 0.95
getTotalRowsMethod · 0.95
getRowsMethod · 0.95
commitChangeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected