Lines Matching refs:aSql
103 ::rtl::OUString aSql = ::rtl::OUString::createFromAscii("CREATE "); in appendObject()
108 aSql = aSql + ::rtl::OUString::createFromAscii("UNIQUE "); in appendObject()
109 aSql = aSql + ::rtl::OUString::createFromAscii("INDEX "); in appendObject()
114 aSql = aSql + aQuote + _rForName + aQuote 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()
135 aSql = aSql.replaceAt(aSql.getLength()-1,1,::rtl::OUString::createFromAscii(")")); in appendObject()
139 …aSql = aSql + aQuote + m_pTable->getSchema() + aQuote + sDot + aQuote + m_pTable->getTableName() +… in appendObject()
149 …aSql = aSql + sDot + aQuote + getString(xColProp->getPropertyValue(OMetaConnection::getPropMap().g… in appendObject()
153 xStmt->execute(aSql); in appendObject()
169 ::rtl::OUString aSql = ::rtl::OUString::createFromAscii("DROP INDEX "); in dropObject()
174 (((aSql += aQuote) += aSchema) += aQuote) += sDot; in dropObject()
176 (((aSql += aQuote) += aName) += aQuote) += ::rtl::OUString::createFromAscii(" ON "); in dropObject()
178 (((aSql += aQuote) += m_pTable->getSchema()) += aQuote) += sDot; in dropObject()
179 ((aSql += aQuote) += m_pTable->getTableName()) += aQuote; in dropObject()
182 xStmt->execute(aSql); in dropObject()