diff options
author | Jean-Pierre Ledure <jp@ledure.be> | 2016-02-03 12:13:54 +0100 |
---|---|---|
committer | Jean-Pierre Ledure <jp@ledure.be> | 2016-02-03 12:13:54 +0100 |
commit | d8a113841160c571a3f254e73b676994eb940a79 (patch) | |
tree | 7b217fde4ab32f4397410e551ed2c958beacac24 /wizards/source/access2base/Collect.xba | |
parent | e9089b4f53c0fef5d0bdcc76add9a43a8c6d81bd (diff) |
Access2Base - Wider database support
Support of HSQLDB 2.3 and MySql
CLOB and BLOB as database field types
Schema and catalog names in tables
GetChunk and AppendChunk methods for binary fields
The Value property returns the correct binary content of binary fields
Change-Id: I0aba80134f9add90f438ac4b7951fce9c1d36239
Diffstat (limited to 'wizards/source/access2base/Collect.xba')
-rw-r--r-- | wizards/source/access2base/Collect.xba | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wizards/source/access2base/Collect.xba b/wizards/source/access2base/Collect.xba index cafda777c67e..74cd756c00f2 100644 --- a/wizards/source/access2base/Collect.xba +++ b/wizards/source/access2base/Collect.xba @@ -206,6 +206,9 @@ Dim vObject As Variant, oTempVar As Object Set oTables = oConnection.getTables() oTables.appendByDescriptor(.TableDescriptor) Set .Table = oTables.getByName(._Name) + .CatalogName = .Table.CatalogName + .SchemaName = .Table.SchemaName + .TableName = .Table.Name .TableDescriptor.dispose() Set .TableDescriptor = Nothing .TableFieldsCount = 0 |