summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/hsqldb/HDriver.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 08:40:32 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 08:40:32 +0000
commitaa798a25f911475c1c767dc972bd4e6e6e6172b5 (patch)
treec64554f5f160195138e96054215915dcb89e056d /connectivity/source/drivers/hsqldb/HDriver.cxx
parentde4dd2ab8808d802f93297f0fb7ee557f2529ae6 (diff)
INTEGRATION: CWS dba26 (1.7.6); FILE MERGED
2005/03/15 15:30:01 fs 1.7.6.2: reverted parts of the previous change - OJ's patch contained too much code :( 2005/03/15 15:05:01 fs 1.7.6.1: #i44582# (patch provided by OJ) refined storage handling
Diffstat (limited to 'connectivity/source/drivers/hsqldb/HDriver.cxx')
-rw-r--r--connectivity/source/drivers/hsqldb/HDriver.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/connectivity/source/drivers/hsqldb/HDriver.cxx b/connectivity/source/drivers/hsqldb/HDriver.cxx
index f36677d6c0..040457b12f 100644
--- a/connectivity/source/drivers/hsqldb/HDriver.cxx
+++ b/connectivity/source/drivers/hsqldb/HDriver.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: HDriver.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: vg $ $Date: 2005-03-10 15:29:26 $
+ * last change: $Author: vg $ $Date: 2005-03-23 09:40:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,7 +62,6 @@
#include "hsqldb/HDriver.hxx"
#endif
#include "hsqldb/HConnection.hxx"
-
#ifndef _OSL_DIAGNOSE_H_
#include <osl/diagnose.h>
#endif
@@ -525,7 +524,9 @@ namespace connectivity
{
Reference< XStatement> xStmt = xConnection->createStatement();
if ( xStmt.is() )
- xStmt->execute(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SET WRITE_DELAY 60")));
+ {
+ xStmt->execute(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("SET WRITE_DELAY 2")));
+ }
}
}
catch(Exception&)