diff options
author | Release Engineering <releng@openoffice.org> | 2010-06-07 14:10:31 +0200 |
---|---|---|
committer | Release Engineering <releng@openoffice.org> | 2010-06-07 14:10:31 +0200 |
commit | c4bc203f2f9c639a2f7d01252d89a77efcf3db6c (patch) | |
tree | 1b0a0cfb1d0273b319b8f0c136b1b40c692d6938 | |
parent | 9047cf03f401f5cfc26739aba28b69c0a9576a19 (diff) |
masterfix: #i10000# build issue
-rw-r--r-- | dbaccess/source/core/api/KeySet.cxx | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx index 252083f2d084..9c7fdb4bbdd4 100644 --- a/dbaccess/source/core/api/KeySet.cxx +++ b/dbaccess/source/core/api/KeySet.cxx @@ -2,7 +2,7 @@ * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * Copyright 2000, 2010 Oracle and/or its affiliates. + * Copyright 2000, 2010 Oracle andor its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * @@ -349,18 +349,6 @@ void OKeySet::construct(const Reference< XResultSet>& _xDriverSet,const ::rtl::O xPara->getPropertyValue(PROPERTY_REALNAME) >>= aParameterColumns[i]; } - - // locate parameter in select columns - Reference<XParametersSupplier> xParaSup(m_xComposer,UNO_QUERY); - Reference<XIndexAccess> xQueryParameters = xParaSup->getParameters(); - const sal_Int32 nParaCount = xQueryParameters->getCount(); - Sequence< ::rtl::OUString> aParameterColumns(nParaCount); - for(sal_Int32 i = 0; i< nParaCount;++i) - { - Reference<XPropertySet> xPara(xQueryParameters->getByIndex(i),UNO_QUERY_THROW); - xPara->getPropertyValue(PROPERTY_REALNAME) >>= aParameterColumns[i]; - } - ::rtl::OUString sCatalog,sSchema,sTable; Reference<XPropertySet> xTableProp(m_xTable,UNO_QUERY); |