summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2017-12-14 11:36:49 +0100
committerJean-Pierre Ledure <jp@ledure.be>2017-12-14 11:39:32 +0100
commit581640ac53f8568157ffc3b5c82b2ae7da576e3b (patch)
tree0200f821484774fa094acc808db7756ccd933605 /wizards
parentd91d2400a56d98c8bd0cacd5d75a4081f7a4bd75 (diff)
Access2Base - FIX getString() on LONGVARCHAR fields
When length > 64K
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/access2base/Utils.xba2
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 &lt;= cstMaxBinLength Then vValue = poResultSet.getString(piColIndex) Else vValue = &quot;&quot;
+ vValue = poResultSet.getString(piColIndex)
End If
Else
oValue.closeInput()