if you update more than one NTEXT column via bind variable and ODBC on an SQLServer database with one update, e.g.
Code: Select all
update table1 set text1 = :ls1, text2 = :ls2, text3 = :ls3, text4 = :ls4 where id = :nID
The number of TEXT columns is irrelevant, it happens with 2 or more updated columns.
Ralf