denisenkom / pytds

Python DBAPI driver for MSSQL using pure Python TDS (Tabular Data Stream) protocol implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

LHCGreg opened this issue · comments

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.