Tag: cws_src680_qiq User: fs Date: 2006/06/27 07:03:33 Modified: dba/connectivity/source/drivers/adabas/BIndexes.cxx
Log: RESYNC: (1.20-1.21); FILE MERGED File Changes: Directory: /dba/connectivity/source/drivers/adabas/ =================================================== File [changed]: BIndexes.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/adabas/BIndexes.cxx?r1=1.20.104.1&r2=1.20.104.2 Delta lines: +7 -7 ------------------- --- BIndexes.cxx 16 Jun 2006 11:32:30 -0000 1.20.104.1 +++ BIndexes.cxx 27 Jun 2006 14:03:30 -0000 1.20.104.2 @@ -91,7 +91,7 @@ aName = _rName; - Reference< XResultSet > xResult = m_pTable->getConnection()->getMetaData()->getIndexInfo(Any(), + Reference< XResultSet > xResult = m_pTable->getMetaData()->getIndexInfo(Any(), m_pTable->getSchema(),m_pTable->getTableName(),sal_False,sal_False); sdbcx::ObjectType xRet = NULL; @@ -132,7 +132,7 @@ ::dbtools::throwFunctionSequenceException(static_cast<XTypeProvider*>(this)); ::rtl::OUString aSql = ::rtl::OUString::createFromAscii("CREATE "); - ::rtl::OUString aQuote = m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString( ); + ::rtl::OUString aQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); const ::rtl::OUString& sDot = OAdabasCatalog::getDot(); if(getBOOL(descriptor->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISUNIQUE)))) @@ -188,7 +188,7 @@ } // ------------------------------------------------------------------------- // XDrop -void OIndexes::dropObject(sal_Int32 _nPos,const ::rtl::OUString _sElementName) +void OIndexes::dropObject(sal_Int32 /*_nPos*/,const ::rtl::OUString _sElementName) { if(!m_pTable->isNew()) { @@ -198,7 +198,7 @@ aName = _sElementName.copy(nLen+1); ::rtl::OUString aSql = ::rtl::OUString::createFromAscii("DROP INDEX "); - ::rtl::OUString aQuote = m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString( ); + ::rtl::OUString aQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); const ::rtl::OUString& sDot = OAdabasCatalog::getDot(); if (aSchema.getLength()) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
