From 581640ac53f8568157ffc3b5c82b2ae7da576e3b Mon Sep 17 00:00:00 2001 From: Jean-Pierre Ledure Date: Thu, 14 Dec 2017 11:36:49 +0100 Subject: Access2Base - FIX getString() on LONGVARCHAR fields When length > 64K --- wizards/source/access2base/Utils.xba | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wizards') diff --git a/wizards/source/access2base/Utils.xba b/wizards/source/access2base/Utils.xba index 42c0a4b15a24..3a0c90e76331 100644 --- a/wizards/source/access2base/Utils.xba +++ b/wizards/source/access2base/Utils.xba @@ -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() -- cgit