diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2022-03-13 19:29:13 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2022-03-13 20:47:57 +0100 |
commit | 924791c51b27226e34fd1e0a32cc7d3d66683d0b (patch) | |
tree | 43cf2e6d23a02661c68206079f61ae5e14e71ca3 /connectivity | |
parent | 122e9364ab297661ed91854f192c7a880eb08634 (diff) |
Remove forgotten remnant test code
Change-Id: Iffa86449fc2e4946821afea07e22deb355c7fbf4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131507
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/View.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/connectivity/source/drivers/firebird/View.cxx b/connectivity/source/drivers/firebird/View.cxx index 506cafb40463..6dcbf6bce2b2 100644 --- a/connectivity/source/drivers/firebird/View.cxx +++ b/connectivity/source/drivers/firebird/View.cxx @@ -7,7 +7,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "View.hxx" -#include <iostream> #include <propertyids.hxx> @@ -68,10 +67,6 @@ OUString View::impl_getCommand() const { OUString aCommand("SELECT RDB$VIEW_SOURCE FROM RDB$RELATIONS WHERE RDB$RELATION_NAME = '" + m_Name + "'"); - std::cerr << "TODO aCommand=" << aCommand << "\n"; - // OUString aCommand("SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_SCHEMA = '" - // + m_SchemaName + "' AND TABLE_NAME = '" + m_Name + "'"); - //::utl::SharedUNOComponent< XStatement > xStatement; xStatement.set( m_xConnection->createStatement(), UNO_QUERY_THROW ); css::uno::Reference<css::sdbc::XStatement> statement = m_xConnection->createStatement(); css::uno::Reference<css::sdbc::XResultSet> xResult = statement->executeQuery(aCommand); |