Release Notes

1.8.5 build 1867

This release contains the following enhancements for SQL Server:

1 - Request filters now have a context.mssqlutils object that can be used to execute "out-of-band" queries.


2 - Column values can now be retrieved by column index, e.g.:

let name = context.packet[3];

which is equivalent to:

let name = context.packet.last_name;