()
| 146 | * Check if database is initialized |
| 147 | */ |
| 148 | export function isDatabaseInitialized(): boolean { |
| 149 | return pool !== null; |
| 150 | } |
| 151 | |
| 152 | /** Escape SQL LIKE pattern metacharacters (\\, %, _) in a single pass. */ |
| 153 | export function escapeLikePattern(value: string): string { |
no outgoing calls
no test coverage detected