/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * Effective License of whole file: * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Parts "Copyright by Sun Microsystems, Inc" prior to August 2011: * * The Contents of this file are made available subject to the terms of * the GNU Lesser General Public License Version 2.1 * * Copyright: 2000 by Sun Microsystems, Inc. * * Contributor(s): Joerg Budischewski * * All parts contributed on or after August 2011: * * 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/. *
************************************************************************/
using com::sun::star::uno::Any; using com::sun::star::uno::UNO_QUERY; using com::sun::star::uno::Reference;
using com::sun::star::sdbc::XRow; using com::sun::star::sdbc::XStatement; using com::sun::star::sdbc::XResultSet; using com::sun::star::sdbc::XParameters; using com::sun::star::sdbc::XPreparedStatement;
static sal_Int32 string2keytype( std::u16string_view type )
{
sal_Int32 ret = css::sdbcx::KeyType::UNIQUE; if ( type == u"p" )
ret = css::sdbcx::KeyType::PRIMARY; elseif ( type == u"f" )
ret = css::sdbcx::KeyType::FOREIGN; return ret;
}
static sal_Int32 string2keyrule( std::u16string_view rule )
{
sal_Int32 ret = css::sdbc::KeyRule::NO_ACTION; if( rule == u"r" )
ret = css::sdbc::KeyRule::RESTRICT; elseif( rule == u"c" )
ret = css::sdbc::KeyRule::CASCADE; elseif( rule == u"n" )
ret = css::sdbc::KeyRule::SET_NULL; elseif( rule == u"d" )
ret = css::sdbc::KeyRule::SET_DEFAULT; return ret;
}
void Keys::refresh()
{ try
{
SAL_INFO("connectivity.postgresql", "sdbcx.Keys get refreshed for table " << m_schemaName << "." << m_tableName);
osl::MutexGuard guard( m_xMutex->GetMutex() );
Statics & st = getStatics();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.