Lines Matching refs:xStmt

197 				Reference< XStatement > xStmt = m_pConnection->createStatement(  );  in alterColumnByName()  local
198 if(xStmt.is()) in alterColumnByName()
200 xStmt->execute(sSql); in alterColumnByName()
201 ::comphelper::disposeComponent(xStmt); in alterColumnByName()
242 Reference< XStatement > xStmt = m_pConnection->createStatement( ); in alterColumnType() local
243 if(xStmt.is()) in alterColumnType()
245 xStmt->execute(sSql); in alterColumnType()
246 ::comphelper::disposeComponent(xStmt); in alterColumnType()
263 Reference< XStatement > xStmt = m_pConnection->createStatement(); in alterNotNullValue() local
264 if(xStmt.is()) in alterNotNullValue()
266 xStmt->execute(sSql); in alterNotNullValue()
267 ::comphelper::disposeComponent(xStmt); in alterNotNullValue()
276 Reference< XStatement > xStmt = m_pConnection->createStatement(); in alterDefaultValue() local
277 if(xStmt.is()) in alterDefaultValue()
279 xStmt->execute(sSql); in alterDefaultValue()
280 ::comphelper::disposeComponent(xStmt); in alterDefaultValue()
289 Reference< XStatement > xStmt = m_pConnection->createStatement(); in dropDefaultValue() local
290 if(xStmt.is()) in dropDefaultValue()
292 xStmt->execute(sSql); in dropDefaultValue()
293 ::comphelper::disposeComponent(xStmt); in dropDefaultValue()
302 Reference< XStatement > xStmt = m_pConnection->createStatement(); in addDefaultValue() local
303 if(xStmt.is()) in addDefaultValue()
305 xStmt->execute(sSql); in addDefaultValue()
306 ::comphelper::disposeComponent(xStmt); in addDefaultValue()
314 Reference< XStatement > xStmt = m_pConnection->createStatement(); in beginTransAction() local
315 if(xStmt.is()) in beginTransAction()
317 xStmt->execute(::rtl::OUString::createFromAscii("SUBTRANS BEGIN") ); in beginTransAction()
318 ::comphelper::disposeComponent(xStmt); in beginTransAction()
330 Reference< XStatement > xStmt = m_pConnection->createStatement(); in endTransAction() local
331 if(xStmt.is()) in endTransAction()
333 xStmt->execute(::rtl::OUString::createFromAscii("SUBTRANS END") ); in endTransAction()
334 ::comphelper::disposeComponent(xStmt); in endTransAction()
346 Reference< XStatement > xStmt = m_pConnection->createStatement(); in rollbackTransAction() local
347 if(xStmt.is()) in rollbackTransAction()
349 xStmt->execute(::rtl::OUString::createFromAscii("SUBTRANS ROLLBACK") ); in rollbackTransAction()
350 ::comphelper::disposeComponent(xStmt); in rollbackTransAction()