User: hr Date: 2007-11-01 14:52:54+0000 Modified: dba/connectivity/source/simpledbt/dbtfactory.cxx
Log: INTEGRATION: CWS dba24b (1.6.124); FILE MERGED 2007/09/04 20:44:13 fs 1.6.124.1: #i73237# +createFormattedColumnValue File Changes: Directory: /dba/connectivity/source/simpledbt/ ============================================== File [changed]: dbtfactory.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/simpledbt/dbtfactory.cxx?r1=1.6&r2=1.7 Delta lines: +11 -3 -------------------- --- dbtfactory.cxx 2006-09-17 03:13:30+0000 1.6 +++ dbtfactory.cxx 2007-11-01 14:52:52+0000 1.7 @@ -36,12 +36,12 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_connectivity.hxx" +#include <connectivity/virtualdbtools.hxx> +#include <connectivity/formattedcolumnvalue.hxx> + #ifndef CONNECTIVITY_DBTOOLS_DBTFACTORY_HXX #include "dbtfactory.hxx" #endif -#ifndef CONNECTIVITY_VIRTUAL_DBTOOLS_HXX -#include <connectivity/virtualdbtools.hxx> -#endif #ifndef CONNECTIVITY_DBTOOLS_PARSER_SIMPLE_HXX #include "parser_s.hxx" #endif @@ -111,6 +111,14 @@ } //---------------------------------------------------------------- + ::std::auto_ptr< ::dbtools::FormattedColumnValue > ODataAccessToolsFactory::createFormattedColumnValue( const ::comphelper::ComponentContext& _rContext, + const Reference< ::com::sun::star::sdbc::XRowSet >& _rxRowSet, const Reference< ::com::sun::star::beans::XPropertySet >& _rxColumn ) + { + ::std::auto_ptr< ::dbtools::FormattedColumnValue > pValue( new ::dbtools::FormattedColumnValue( _rContext, _rxRowSet, _rxColumn ) ); + return pValue; + } + + //---------------------------------------------------------------- ::rtl::Reference< simple::ISQLParser > ODataAccessToolsFactory::createSQLParser(const Reference< XMultiServiceFactory >& _rxServiceFactory,const IParseContext* _pContext) const { return new OSimpleSQLParser(_rxServiceFactory,_pContext); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
