diff options
author | Matthew Nicholls <matthew.nicholls95@hotmail.co.uk> | 2015-04-01 15:43:32 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-04-14 14:29:02 +0000 |
commit | b7bb34d74c5c764844f5b87483d09a61d3088695 (patch) | |
tree | c2e0827ed5ffe194ef51a8204b67d298c6741b50 /connectivity/source/commontools | |
parent | 7b68534ab0d322522ee5f64250526050187b6a9c (diff) |
tdf#88710 Kill svx dbtoolsclient
Removes dynamic loading logic described in tdf#84315, similar thing
removed in swdbtoolsclient.
Change-Id: I8762102a7263e6933354c2ff6f9978929b760f6e
Reviewed-on: https://gerrit.libreoffice.org/15147
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'connectivity/source/commontools')
-rw-r--r-- | connectivity/source/commontools/dbtools.cxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/connectivity/source/commontools/dbtools.cxx b/connectivity/source/commontools/dbtools.cxx index 4f5e3950a573..557e4286a1a7 100644 --- a/connectivity/source/commontools/dbtools.cxx +++ b/connectivity/source/commontools/dbtools.cxx @@ -82,6 +82,9 @@ #include "resource/sharedresources.hxx" #include <connectivity/OSubComponent.hxx> +#include "simpledbt/parser_s.hxx" +#include "simpledbt/charset_s.hxx" + #include <algorithm> #include <iterator> #include <set> @@ -1973,6 +1976,18 @@ void getBooleanComparisonPredicate( const OUString& _rExpression, const bool _bV } } +simple::ISQLParser* createSQLParser( + const Reference< XComponentContext >& rxContext, + const IParseContext* _pContext ) +{ + return new OSimpleSQLParser(rxContext, _pContext); +} + +simple::IDataAccessCharSet* createCharsetHelper( ) +{ + return new ODataAccessCharSet; +} + } // namespace dbtools namespace connectivity |