summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2000-11-14 12:28:38 +0000
committerOcke Janssen <oj@openoffice.org>2000-11-14 12:28:38 +0000
commitfbb0bafd802a2d001c319e06fa9c8e7068591cd3 (patch)
treeeb5f821c076f86d6ad68ed145c9bfdbe4311baaf
parent375e8ccd63e61f6c0b6380ea37637e517aa35d56 (diff)
return changed for stores
-rw-r--r--connectivity/source/drivers/file/FDatabaseMetaData.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/file/FDatabaseMetaData.cxx b/connectivity/source/drivers/file/FDatabaseMetaData.cxx
index db2f4b3c75b5..144163cd5f5d 100644
--- a/connectivity/source/drivers/file/FDatabaseMetaData.cxx
+++ b/connectivity/source/drivers/file/FDatabaseMetaData.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FDatabaseMetaData.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: oj $ $Date: 2000-11-03 14:14:00 $
+ * last change: $Author: oj $ $Date: 2000-11-14 13:28:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -528,14 +528,14 @@ sal_Bool SAL_CALL ODatabaseMetaData::storesMixedCaseQuotedIdentifiers( ) throw(
{
::osl::MutexGuard aGuard( m_aMutex );
- return sal_True;
+ return sal_False;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ODatabaseMetaData::storesMixedCaseIdentifiers( ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- return sal_True;
+ return sal_False;
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL ODatabaseMetaData::storesUpperCaseQuotedIdentifiers( ) throw(SQLException, RuntimeException)