diff options
author | Jean-Pierre Ledure <jp@ledure.be> | 2017-12-14 11:36:49 +0100 |
---|---|---|
committer | Jean-Pierre Ledure <jp@ledure.be> | 2017-12-14 11:39:32 +0100 |
commit | 581640ac53f8568157ffc3b5c82b2ae7da576e3b (patch) | |
tree | 0200f821484774fa094acc808db7756ccd933605 /wizards | |
parent | d91d2400a56d98c8bd0cacd5d75a4081f7a4bd75 (diff) |
Access2Base - FIX getString() on LONGVARCHAR fields
When length > 64K
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/access2base/Utils.xba | 2 |
1 files changed, 1 insertions, 1 deletions
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() |