denisenkom / pytds

Python DBAPI driver for MSSQL using pure Python TDS (Tabular Data Stream) protocol implementation
MIT License
192 stars 53 forks source link

Result sets with multiple rows of [n]varchar(max) values return incorrect values #91

Closed LHCGreg closed 6 years ago

LHCGreg commented 6 years ago

If a result set has three rows of nvarchar(max) values, 'foo', 'bar', and 'baz', then the values returned are 'foo', 'foobar', and 'foobarbaz'.

PR incoming.