NOTE: This is typed as any for backward compatibility with the existing codebase,
which extensively accesses recordset rows with inline type annotations and untyped
property access inherited from the mssql driver's IRecordSet<any>. As individual
call sites are migrated to proper typing, this can be narrowed to
Record<string, unknown> or a generic parameter.
Represents a single row from a query result.
NOTE: This is typed as
anyfor backward compatibility with the existing codebase, which extensively accesses recordset rows with inline type annotations and untyped property access inherited from the mssql driver'sIRecordSet<any>. As individual call sites are migrated to proper typing, this can be narrowed toRecord<string, unknown>or a generic parameter.