User: hr Date: 2007-09-26 14:26:46+0000 Modified: dba/connectivity/inc/connectivity/dbmetadata.hxx
Log: INTEGRATION: CWS dba24a (1.4.82); FILE MERGED 2007/08/28 06:58:47 oj 1.4.82.1: #i68858# enable relation for mysql inodb File Changes: Directory: /dba/connectivity/inc/connectivity/ ============================================== File [changed]: dbmetadata.hxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/inc/connectivity/dbmetadata.hxx?r1=1.4&r2=1.5 Delta lines: +11 -5 -------------------- --- dbmetadata.hxx 2006-12-13 16:11:26+0000 1.4 +++ dbmetadata.hxx 2007-09-26 14:26:44+0000 1.5 @@ -109,10 +109,10 @@ } /// wraps XDatabaseMetaData::getIdentifierQuoteString - const ::rtl::OUString& SAL_CALL getIdentifierQuoteString() const; + const ::rtl::OUString& getIdentifierQuoteString() const; /// wraps XDatabaseMetaData::getCatalogSeparator - const ::rtl::OUString& SAL_CALL getCatalogSeparator() const; + const ::rtl::OUString& getCatalogSeparator() const; /** determines whether the database supports sub queries in the FROM part of a SELECT clause are supported. @@ -120,14 +120,14 @@ with SQLState 08003 (connection does not exist) if the instances was default-constructed and does not have a connection, yet. */ - bool SAL_CALL supportsSubqueriesInFrom() const; + bool supportsSubqueriesInFrom() const; /** determines whether names in the database should be restricted to SQL-92 identifiers Effectively, this method checks the EnableSQL92Check property of the data source settings, if present. */ - bool SAL_CALL restrictIdentifiersToSQL92() const; + bool restrictIdentifiersToSQL92() const; /** determines whether when generating SQL statements, an AS keyword should be generated before a correlation name. @@ -135,7 +135,13 @@ E.g., it determines whether <code>SELECT * FROM table AS correlation_name</code> or <code>SELECT * FROM table correlation_name</code> is generated. */ - bool SAL_CALL generateASBeforeCorrelationName() const; + bool generateASBeforeCorrelationName() const; + + /** + * + * \return <TRUE/> when relations are supported, otherwise <FALSE/> + */ + bool supportsRelations() const; }; //........................................................................ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
