#include <string.h>
#include <sal/log.hxx>
#include <composertools.hxx>
#include <strings.hrc>
#include <strings.hxx>
#include <core_resource.hxx>
#include <stringconstants.hxx>
#include "HelperCollections.hxx"
#include <SingleSelectQueryComposer.hxx>
#include <sqlbison.hxx>
#include <sdbcoretools.hxx>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <com/sun/star/i18n/LocaleData.hpp>
#include <com/sun/star/script/Converter.hpp>
#include <com/sun/star/sdb/BooleanComparisonMode.hpp>
#include <com/sun/star/sdb/SQLFilterOperator.hpp>
#include <com/sun/star/sdb/XQueriesSupplier.hpp>
#include <com/sun/star/sdb/CommandType.hpp>
#include <com/sun/star/sdbc/ColumnSearch.hpp>
#include <com/sun/star/sdbc/DataType.hpp>
#include <com/sun/star/sdbc/XConnection.hpp>
#include <com/sun/star/sdbc/XResultSetMetaData.hpp>
#include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
#include <com/sun/star/sdbc/XParameters.hpp>
#include <com/sun/star/util/NumberFormatter.hpp>
#include <comphelper/types.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <connectivity/dbtools.hxx>
#include <connectivity/PColumn.hxx>
#include <connectivity/predicateinput.hxx>
#include <comphelper/diagnose_ex.hxx>
#include <osl/diagnose.h>
#include <unotools/sharedunocomponent.hxx>
#include <memory>
#include <string_view>
Go to the source code of this file.
◆ COMMA
constexpr OUStringLiteral COMMA = u"," |
|
constexpr |
◆ L_BRACKET
constexpr OUStringLiteral L_BRACKET = u"(" |
|
constexpr |
◆ R_BRACKET
constexpr OUStringLiteral R_BRACKET = u")" |
|
constexpr |
◆ STR_AND
constexpr OUStringLiteral STR_AND = u" AND " |
|
constexpr |
◆ STR_FROM
constexpr OUStringLiteral STR_FROM = u" FROM " |
|
constexpr |
◆ STR_GROUP_BY
constexpr OUStringLiteral STR_GROUP_BY = u" GROUP BY " |
|
constexpr |
◆ STR_HAVING
constexpr OUStringLiteral STR_HAVING = u" HAVING " |
|
constexpr |
◆ STR_LIKE
constexpr OUStringLiteral STR_LIKE = u" LIKE " |
|
constexpr |
◆ STR_OR
constexpr OUStringLiteral STR_OR = u" OR " |
|
constexpr |
◆ STR_ORDER_BY
constexpr OUStringLiteral STR_ORDER_BY = u" ORDER BY " |
|
constexpr |
◆ STR_SELECT
constexpr OUStringLiteral STR_SELECT = u"SELECT " |
|
constexpr |
◆ STR_WHERE
constexpr OUStringLiteral STR_WHERE = u" WHERE " |
|
constexpr |