diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-13 17:33:30 +0100 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-13 22:12:40 +0100 |
commit | 67a9e7b1a161e96924e2e08b648c513b1a9795e2 (patch) | |
tree | 61077bf7f140a23dd06b33237895dcf162514f60 /connectivity | |
parent | 6e3118777b7f6cb4df5664df197ac026cca73c16 (diff) |
OTableHelper requires a call to construct() to be usable. (firebird-sdbc)
Without this we get a UnknownPropertyException due to the relevant
properties not being set up.
Change-Id: I3fa956a4a82e411d7aba3895faf58b8a84f9fb5c
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/Table.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/connectivity/source/drivers/firebird/Table.cxx b/connectivity/source/drivers/firebird/Table.cxx index 7624eee157c0..1cd98136ba6e 100644 --- a/connectivity/source/drivers/firebird/Table.cxx +++ b/connectivity/source/drivers/firebird/Table.cxx @@ -39,6 +39,7 @@ Table::Table(Tables* pTables, ""), m_rMutex(rMutex) { + OTableHelper::construct(); } //----- OTableHelper --------------------------------------------------------- |