2ccde70d60
Change-Id: Iac8ccd17d9e46ebb2cb55db7adb06c469bbd4ea0 Reviewed-on: https://gerrit.libreoffice.org/37910 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
347 lines
12 KiB
C++
347 lines
12 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include "mysqlc_resultsetmetadata.hxx"
|
|
#include "mysqlc_general.hxx"
|
|
#include "cppconn/exception.h"
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
using namespace connectivity::mysqlc;
|
|
using namespace com::sun::star::uno;
|
|
using namespace com::sun::star::lang;
|
|
using namespace com::sun::star::sdbc;
|
|
|
|
|
|
OResultSetMetaData::~OResultSetMetaData()
|
|
{
|
|
}
|
|
|
|
sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize(sal_Int32 column)
|
|
{
|
|
try {
|
|
meta->getColumnDisplaySize(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getColumnDisplaySize", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return 0; // fool compiler
|
|
}
|
|
|
|
sal_Int32 SAL_CALL OResultSetMetaData::getColumnType(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return mysqlc_sdbc_driver::mysqlToOOOType(meta->getColumnType(column));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return 0; // fool compiler
|
|
}
|
|
|
|
/*
|
|
XXX: This method doesn't throw exceptions at all.
|
|
Should it declare that it throws ?? What if throw() is removed?
|
|
Does it change the API, the open-close principle?
|
|
*/
|
|
sal_Int32 SAL_CALL OResultSetMetaData::getColumnCount()
|
|
{
|
|
try {
|
|
return meta->getColumnCount();
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return 0; // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isCaseSensitive(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getSchemaName(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return convert(meta->getSchemaName(column));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return rtl::OUString(); // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getColumnName(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return convert( meta->getColumnName( column ) );
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return rtl::OUString(); // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getTableName(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return convert(meta->getTableName(column));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return rtl::OUString(); // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getCatalogName(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return convert(meta->getCatalogName(column));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return rtl::OUString(); // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getColumnTypeName(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return convert(meta->getColumnTypeName(column));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return rtl::OUString(); // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getColumnLabel(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return convert(meta->getColumnLabel(column));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return rtl::OUString(); // fool compiler
|
|
}
|
|
|
|
rtl::OUString SAL_CALL OResultSetMetaData::getColumnServiceName(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
rtl::OUString aRet = rtl::OUString();
|
|
return aRet;
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isCurrency(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isCurrency(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isAutoIncrement(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isAutoIncrement(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isSigned(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isSigned(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
sal_Int32 SAL_CALL OResultSetMetaData::getPrecision(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->getPrecision(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getPrecision", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return 0; // fool compiler
|
|
}
|
|
|
|
sal_Int32 SAL_CALL OResultSetMetaData::getScale(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
try {
|
|
return meta->getScale(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getScale", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return 0; // fool compiler
|
|
}
|
|
|
|
sal_Int32 SAL_CALL OResultSetMetaData::isNullable(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return sal_Int32(bool(meta->isNullable(column)));
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return sal_Int32(false); // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isSearchable(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isSearchable(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isReadOnly(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isReadOnly(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isDefinitelyWritable(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isDefinitelyWritable(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
sal_Bool SAL_CALL OResultSetMetaData::isWritable(sal_Int32 column)
|
|
{
|
|
checkColumnIndex(column);
|
|
|
|
try {
|
|
return meta->isWritable(column);
|
|
} catch (const sql::MethodNotImplementedException &) {
|
|
mysqlc_sdbc_driver::throwFeatureNotImplementedException("OResultSetMetaData::getMetaData", *this);
|
|
} catch (const sql::SQLException &e) {
|
|
mysqlc_sdbc_driver::translateAndThrow(e, *this, m_encoding);
|
|
}
|
|
return false; // fool compiler
|
|
}
|
|
|
|
void OResultSetMetaData::checkColumnIndex(sal_Int32 columnIndex)
|
|
{
|
|
if (columnIndex < 1 || columnIndex > (sal_Int32) meta->getColumnCount()) {
|
|
|
|
rtl::OUStringBuffer buf;
|
|
buf.appendAscii( "Column index out of range (expected 1 to " );
|
|
buf.append( sal_Int32( meta->getColumnCount() ) );
|
|
buf.appendAscii( ", got " );
|
|
buf.append( columnIndex );
|
|
buf.append( '.' );
|
|
throw SQLException( buf.makeStringAndClear(), *this, rtl::OUString(), 1, Any() );
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
* vim<600: noet sw=4 ts=4
|
|
*/
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|