summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2013-08-12 10:25:05 +0100
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2013-08-12 17:20:21 +0100
commitc33f9afcadf350ea9f9a82b57f52ee08998ef653 (patch)
tree8fc638088b4094569a3f68ff1f16caf0225c5127 /connectivity
parent2997e7d253419ae7cd545e9d0a4a5fe205c5a156 (diff)
Add getIndexes. (firebird-sdbc)
Change-Id: I939c8033b6813754ee62092e3cab39ded853501e
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/firebird/Table.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/Table.cxx b/connectivity/source/drivers/firebird/Table.cxx
index 7138916957bc..0c0c753a9aaa 100644
--- a/connectivity/source/drivers/firebird/Table.cxx
+++ b/connectivity/source/drivers/firebird/Table.cxx
@@ -10,6 +10,7 @@
#include "Columns.hxx"
#include "Table.hxx"
+#include <connectivity/TIndexes.hxx>
#include <connectivity/TKeys.hxx>
using namespace ::connectivity;
@@ -61,9 +62,9 @@ OCollection* Table::createKeys(const TStringVector& rNames)
OCollection* Table::createIndexes(const TStringVector& rNames)
{
- (void) rNames;
- // TODO: IMPLEMENT ME
- return 0;
+ return new OIndexesHelper(this,
+ m_rMutex,
+ rNames);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file