diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-12 10:51:05 +0100 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-12 17:20:22 +0100 |
commit | 6878fa8a9cba2d484f5fad264188c5a825fc5315 (patch) | |
tree | 398a065c4e9cf67850c1fc9b72aeb84d0f695384 /connectivity | |
parent | 893a8a6f1183d8af2fe6be68457ecfe3f6ad8155 (diff) |
Use correct data in Tables::createObject. (firebird-sdbc)
Change-Id: I01a55a15fdb88bf0910afabb6763829c979e35fa
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/Tables.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/firebird/Tables.cxx b/connectivity/source/drivers/firebird/Tables.cxx index a0f70cf79478..607fdc32bd38 100644 --- a/connectivity/source/drivers/firebird/Tables.cxx +++ b/connectivity/source/drivers/firebird/Tables.cxx @@ -63,9 +63,9 @@ ObjectType Tables::createObject(const OUString& rName) ObjectType xRet(new Table(this, m_rMutex, m_xMetaData.getConnection(), - rName, - "", // TODO: Type - "")); // TODO: Description + xRow->getString(3), // Name + xRow->getString(4), // Type + xRow->getString(5))); // Description / Remarks / Comments if (xTables->next()) throw RuntimeException(); // Only one table should be returned |