summaryrefslogtreecommitdiff
path: root/wizards/source/access2base/Database.xba
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2017-04-05 18:00:57 +0200
committerJean-Pierre Ledure <jp@ledure.be>2017-04-05 18:00:57 +0200
commit45130a1b673a930f8607cd86e655a4b4cc2b89e2 (patch)
treec6b4fe56f98deb017ef65b280ba3f2e443304ac3 /wizards/source/access2base/Database.xba
parent2e1d9789fe5d6bd9f8d85e2eb672b5729e045c2b (diff)
Access2Base - Solving some trouble with bigint variables
Bigints are unknown in Basic. Conversions with CLng. Removal of a few useless lines Change-Id: I7bc85e1ee5a53b098e3a2e46bb1829fcc4a2eef4
Diffstat (limited to 'wizards/source/access2base/Database.xba')
-rw-r--r--wizards/source/access2base/Database.xba2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/access2base/Database.xba b/wizards/source/access2base/Database.xba
index dd5be2877283..f7463e03a94c 100644
--- a/wizards/source/access2base/Database.xba
+++ b/wizards/source/access2base/Database.xba
@@ -1210,7 +1210,7 @@ Const cstSQLITE = &quot;SQLite&quot;
iInfo = iInfo + 1
_ColumnTypeNames(iInfo) = sName
_ColumnTypes(iInfo) = lType
- _ColumnPrecisions(iInfo) = .getLong(3)
+ _ColumnPrecisions(iInfo) = CLng(.getLong(3))
End If
.next()
Loop