Access2Base - FIX getString() on LONGVARCHAR fields

When length > 64K
This commit is contained in:
Jean-Pierre Ledure 2017-12-14 11:36:49 +01:00
parent d91d2400a5
commit 581640ac53

View File

@ -413,7 +413,7 @@ Const cstMaxBinlength = 2 * 65535
lSize = CLng(oValue.getLength())
End If
oValue.closeInput()
If lSize <= cstMaxBinLength Then vValue = poResultSet.getString(piColIndex) Else vValue = ""
vValue = poResultSet.getString(piColIndex)
End If
Else
oValue.closeInput()