summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2013-08-14 12:27:37 +0100
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2013-08-14 17:24:59 +0100
commit488f62781e20ebe196ed9cb00a0d41ca00ee0808 (patch)
treeabf1c30063973da0b17708c3cf83ab9dae7141de /connectivity
parentb174e1b733892778c9301d3b1f8d92573d317de5 (diff)
Refresh columns after alter. (firebird-sdbc)
Without this the column data isn't updated after a change, which can lead to e.g. the UI getting confused and producing errors. Change-Id: I69ed79bbb987799fea7ecbbb1e516f7f9328ef9f
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/firebird/Table.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/connectivity/source/drivers/firebird/Table.cxx b/connectivity/source/drivers/firebird/Table.cxx
index 80f107cb6cce..03d7657e1db6 100644
--- a/connectivity/source/drivers/firebird/Table.cxx
+++ b/connectivity/source/drivers/firebird/Table.cxx
@@ -100,6 +100,7 @@ void SAL_CALL Table::alterColumnByName(const OUString& rColName,
getConnection()->createStatement()->execute(sSql);
}
+ m_pColumns->refresh();
// TODO: implement me
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file