Skip to content

0.15.0 - Streaming DataReader and TLS Support

Choose a tag to compare

@senseibaka senseibaka released this 20 Oct 10:32
· 62 commits to master since this release

Improvements:

  • #98 - Add TLS connection support
  • #115 - Streaming data reader. Receive data as the server sends it, where previously the driver would cache the entire server response before returning to caller. Benefits can be seen in the cases where:
    • The executing statement is long-running and produces periodic messages to be consumed immediately
    • The executing statement produces very large data sets that would hit memory limitations if cached in their entirety
  • #117 - Implement AseConnection.IsCaseSensitive

Bug Fixes:

  • #102 - Fix for possible IndexOutOfRangeException on AseDataReader
  • #134 - Fix to reproduce the ordering of messages (i.e. from prints) and table results (i.e. selects) as it was output by the server.

Other: