Lines Matching refs:sql
279 sal_Bool OStatement_Base::lockIfNecessary (const ::rtl::OUString& sql) throw( SQLException) in lockIfNecessary() argument
285 ::rtl::OUString sqlStatement = sql.toAsciiUpperCase (); in lockIfNecessary()
351 sal_Bool SAL_CALL OStatement_Base::execute( const ::rtl::OUString& sql ) throw(SQLException, Runtim… in execute() argument
355 m_sSqlStatement = sql; in execute()
358 ::rtl::OString aSql(::rtl::OUStringToOString(sql,getOwnConnection()->getTextEncoding())); in execute()
370 lockIfNecessary (sql); in execute()
455 Reference< XResultSet > SAL_CALL OStatement_Base::executeQuery( const ::rtl::OUString& sql ) throw(… in executeQuery() argument
466 if (execute (sql)) in executeQuery()
496 void SAL_CALL OStatement::addBatch( const ::rtl::OUString& sql ) throw(SQLException, RuntimeExcepti… in addBatch() argument
502 m_aBatchList.push_back(sql); in addBatch()
539 sal_Int32 SAL_CALL OStatement_Base::executeUpdate( const ::rtl::OUString& sql ) throw(SQLException,… in executeUpdate() argument
550 if (!execute (sql)) { in executeUpdate()