[Libreoffice-commits] core.git: wizards/source
Jean-Pierre Ledure
jp at ledure.be
Thu Dec 14 10:43:08 UTC 2017
wizards/source/access2base/Utils.xba | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 581640ac53f8568157ffc3b5c82b2ae7da576e3b
Author: Jean-Pierre Ledure <jp at ledure.be>
Date: Thu Dec 14 11:36:49 2017 +0100
Access2Base - FIX getString() on LONGVARCHAR fields
When length > 64K
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()
More information about the Libreoffice-commits
mailing list