Tag: cws_src680_dba25 User: oj Date: 05/03/04 02:12:22 Modified: /dba/connectivity/source/drivers/odbc/ ODatabaseMetaData.cxx
Log: correct operator order File Changes: Directory: /dba/connectivity/source/drivers/odbc/ ================================================= File [changed]: ODatabaseMetaData.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/odbc/ODatabaseMetaData.cxx?r1=1.27&r2=1.27.204.1 Delta lines: +4 -4 ------------------- --- ODatabaseMetaData.cxx 11 Apr 2003 14:41:23 -0000 1.27 +++ ODatabaseMetaData.cxx 4 Mar 2005 10:12:19 -0000 1.27.204.1 @@ -2,9 +2,9 @@ * * $RCSfile: ODatabaseMetaData.cxx,v $ * - * $Revision: 1.27 $ + * $Revision: 1.27.204.1 $ * - * last change: $Author: vg $ $Date: 2003/04/11 14:41:23 $ + * last change: $Author: oj $ $Date: 2005/03/04 10:12:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -795,7 +795,7 @@ { SQLUINTEGER nValue; OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_OJ_CAPABILITIES,nValue,*this); - return ((nValue & SQL_OJ_FULL|SQL_OJ_LEFT|SQL_OJ_RIGHT|SQL_OJ_NESTED|SQL_OJ_NOT_ORDERED|SQL_OJ_ALL_COMPARISON_OPS|SQL_OJ_INNER) != 0); + return ((nValue & (SQL_OJ_FULL|SQL_OJ_LEFT|SQL_OJ_RIGHT|SQL_OJ_NESTED|SQL_OJ_NOT_ORDERED|SQL_OJ_ALL_COMPARISON_OPS|SQL_OJ_INNER)) != 0); } // ------------------------------------------------------------------------- Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTableTypes( ) throw(SQLException, RuntimeException) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
