Home
last modified time | relevance | path

Searched refs:xColProp (Results 1 – 13 of 13) sorted by relevance

/trunk/main/connectivity/source/drivers/adabas/
H A DBTables.cxx131 Reference< XPropertySet > xColProp; in setComments() local
141 ::cppu::extractInterface(xColProp,xColumns->getByIndex(i)); in setComments()
142 if(xColProp.is()) in setComments()
219 Reference< XPropertySet > xColProp; in createTable() local
228 if(::cppu::extractInterface(xColProp,xColumns->getByIndex(i)) && xColProp.is()) in createTable()
234 aSql += OTables::getColumnSqlType(xColProp); in createTable()
235 aSql += OTables::getColumnSqlNotNullDefault(xColProp); in createTable()
250 if(::cppu::extractInterface(xColProp,xKeys->getByIndex(key)) && xColProp.is()) in createTable()
269 if(::cppu::extractInterface(xColProp,xColumns->getByIndex(column)) && xColProp.is()) in createTable()
286 if(::cppu::extractInterface(xColProp,xColumns->getByIndex(column)) && xColProp.is()) in createTable()
[all …]
H A DBIndexes.cxx122 Reference< XPropertySet > xColProp; in appendObject() local
126 xColumns->getByIndex(i) >>= xColProp; in appendObject()
127 …aSql = aSql + aQuote + getString(xColProp->getPropertyValue(OMetaConnection::getPropMap().getNameB… in appendObject()
128 …aSql = aSql + (getBOOL(xColProp->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PRO… in appendObject()
143 Reference< XPropertySet > xColProp; in appendObject() local
147 xColumns->getByIndex(0) >>= xColProp; in appendObject()
149 …aSql = aSql + sDot + aQuote + getString(xColProp->getPropertyValue(OMetaConnection::getPropMap().g… in appendObject()
H A DBKeys.cxx85 Reference< XPropertySet > xColProp; in appendObject() local
86 xColumns->getByIndex(i) >>= xColProp; in appendObject()
87 …aSql = aSql + aQuote + getString(xColProp->getPropertyValue(OMetaConnection::getPropMap().getNameB… in appendObject()
110 Reference< XPropertySet > xColProp; in appendObject() local
111 xColumns->getByIndex(i) >>= xColProp; in appendObject()
112 …aSql = aSql + aQuote + getString(xColProp->getPropertyValue(OMetaConnection::getPropMap().getNameB… in appendObject()
/trunk/main/connectivity/source/commontools/
H A Ddbtools2.cxx96 Reference<XPropertySetInfo> xPropInfo = xColProp->getPropertySetInfo(); in createStandardColumnPart()
185 _pHelper->addComment(xColProp,aSql); in createStandardColumnPart()
217 Reference< XPropertySet > xColProp; in createStandardCreateStatement() local
222 if ( (xColumns->getByIndex(i) >>= xColProp) && xColProp.is() ) in createStandardCreateStatement()
239 Reference< XPropertySet > xColProp; in generateColumnNames() local
244 if ( (_xColumns->getByIndex(i) >>= xColProp) && xColProp.is() ) in generateColumnNames()
266 Reference< XPropertySet > xColProp; in createStandardKeyStatement() local
273 if ( (xKeys->getByIndex(i) >>= xColProp) && xColProp.is() ) in createStandardKeyStatement()
284 xColumnSup = Reference<XColumnsSupplier>(xColProp,UNO_QUERY); in createStandardKeyStatement()
295 xColumnSup = Reference<XColumnsSupplier>(xColProp,UNO_QUERY); in createStandardKeyStatement()
[all …]
H A DTIndexes.cxx169 Reference< XPropertySet > xColProp; in appendObject() local
174 xColProp.set(xColumns->getByIndex(i),UNO_QUERY); in appendObject()
175 …aSql.append(::dbtools::quoteName( aQuote,comphelper::getString(xColProp->getPropertyValue(rPropMap… in appendObject()
180 …aSql.appendAscii(any2bool(xColProp->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_ISASCENDI… in appendObject()
196 Reference< XPropertySet > xColProp; in appendObject() local
200 xColumns->getByIndex(0) >>= xColProp; in appendObject()
203 …aSql.append(::dbtools::quoteName( aQuote,comphelper::getString(xColProp->getPropertyValue(rPropMap… in appendObject()
H A DTKeys.cxx128 Reference< XPropertySet > xColProp( xSourceCols->getByIndex(i), UNO_QUERY ); in cloneDescriptorColumns() local
129 xDestAppend->appendByDescriptor( xColProp ); in cloneDescriptorColumns()
187 Reference< XPropertySet > xColProp; in appendObject() local
192 ::cppu::extractInterface(xColProp,xColumns->getByIndex(i)); in appendObject()
193 …aSql.append( ::dbtools::quoteName( aQuote,getString(xColProp->getPropertyValue(rPropMap.getNameByI… in appendObject()
208 xColumns->getByIndex(i) >>= xColProp; in appendObject()
209 …aSql.append(::dbtools::quoteName( aQuote,getString(xColProp->getPropertyValue(rPropMap.getNameByIn… in appendObject()
/trunk/main/connectivity/source/drivers/evoab2/
H A DNTable.hxx36 …eString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);
/trunk/main/connectivity/source/drivers/macab/
H A DMacabTable.hxx36 …eString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);
/trunk/main/connectivity/source/inc/adabas/
H A DBTable.hxx38 …eString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);
/trunk/main/connectivity/source/inc/mysql/
H A DYTable.hxx36 …eString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);
/trunk/main/connectivity/source/inc/hsqldb/
H A DHTable.hxx36 …eString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);
/trunk/main/connectivity/source/drivers/file/
H A DFResultSet.cxx1273 Reference<XPropertySet> xColProp; in sortRows() local
1276 xColProp.set(xIndexes->getByIndex(m_aOrderbyColumnNumber[0]),UNO_QUERY); in sortRows()
1283 …if(xIndexCols->hasByName(comphelper::getString(xColProp->getPropertyValue(OMetaConnection::getProp… in sortRows()
/trunk/main/connectivity/inc/connectivity/
H A DTTableHelper.hxx77 …eString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);

Completed in 77 milliseconds