User: hr Date: 2007-09-26 14:30:21+0000 Modified: dba/connectivity/source/drivers/odbc/OPreparedStatement.cxx
Log: INTEGRATION: CWS dba24a (1.43.82); FILE MERGED 2007/08/30 10:28:13 oj 1.43.82.1: #i55884# share meta data File Changes: Directory: /dba/connectivity/source/drivers/odbc/ ================================================= File [changed]: OPreparedStatement.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/odbc/OPreparedStatement.cxx?r1=1.43&r2=1.44 Delta lines: +8 -2 ------------------- --- OPreparedStatement.cxx 2006-12-13 16:22:16+0000 1.43 +++ OPreparedStatement.cxx 2007-09-26 14:30:18+0000 1.44 @@ -56,6 +56,7 @@ #ifndef _CONNECTIVITY_ODBC_ODRIVER_HXX_ #include "odbc/ODriver.hxx" #endif +#include "odbc/OResultSet.hxx" #ifndef _CONNECTIVITY_ODBC_ORESULTSETMETADATA_HXX_ #include "odbc/OResultSetMetaData.hxx" #endif @@ -1043,5 +1044,10 @@ } } // ----------------------------------------------------------------------------- - - +OResultSet* OPreparedStatement::createResulSet() +{ + OResultSet* pReturn = new OResultSet(m_aStatementHandle,this); + pReturn->setMetaData(getMetaData()); + return pReturn; +} +// ----------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
