diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-05-29 05:31:06 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-05-29 05:31:06 +0000 |
commit | fcd07fbd471c916590d6b402a9e4c42597cea7c0 (patch) | |
tree | 7aeb691d26d5dc744f2fb2ad58f228937f3dd082 | |
parent | a4f2d32a19a306a78c98185867f508af64d1be9e (diff) |
#86293# use default type if type is unknown
-rw-r--r-- | connectivity/source/drivers/ado/adoimp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/ado/adoimp.cxx b/connectivity/source/drivers/ado/adoimp.cxx index 633f29285ce1..c6169c10d214 100644 --- a/connectivity/source/drivers/ado/adoimp.cxx +++ b/connectivity/source/drivers/ado/adoimp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: adoimp.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: oj $ $Date: 2001-05-23 09:13:09 $ + * last change: $Author: oj $ $Date: 2001-05-29 06:31:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -117,7 +117,7 @@ const IID ADOS::IID_ADOVIEW_25 = MYADOID(0x00000613); // ------------------------------------------------------------------------- sal_Int32 ADOS::MapADOType2Jdbc(DataTypeEnum eType) { - sal_Int32 nType; + sal_Int32 nType = DataType::VARCHAR;; switch (eType) { case adUnsignedSmallInt: |