(table: string, columns: Column[], whereClause?: Record<string, any>)
| 103 | } |
| 104 | |
| 105 | async getTotalRows(table: string, columns: Column[], whereClause?: Record<string, any>): Promise<number> { |
| 106 | return SqlService.getTotalRows(this, 'mysql2', this.connection, table, columns, whereClause); |
| 107 | } |
| 108 | |
| 109 | async getRows(table: string, columns: Column[], limit: number, offset: number, whereClause?: Record<string, any>): Promise<QueryResponse | undefined> { |
| 110 | return SqlService.getRows(this, 'mysql2', this.connection, table, columns, limit, offset, whereClause); |
nothing calls this directly
no test coverage detected