diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-01-30 07:28:50 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-01-30 07:28:50 +0000 |
commit | 35d821d6e05d81966a9a38cbcbc5e5747b73fc52 (patch) | |
tree | 3c9497f43ef8596558d4bb8b237fa83acc98807c /dbaccess/source/core | |
parent | dc39852bbe559c34b16de26d17e5e45dc3cb9eb7 (diff) |
INTEGRATION: CWS dba24d (1.27.180); FILE MERGED
2007/11/06 09:19:38 oj 1.27.180.1: #i51965# use scale for update
Diffstat (limited to 'dbaccess/source/core')
-rw-r--r-- | dbaccess/source/core/api/KeySet.hxx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/KeySet.hxx b/dbaccess/source/core/api/KeySet.hxx index d051971d4..cd9d05128 100644 --- a/dbaccess/source/core/api/KeySet.hxx +++ b/dbaccess/source/core/api/KeySet.hxx @@ -4,9 +4,9 @@ * * $RCSfile: KeySet.hxx,v $ * - * $Revision: 1.27 $ + * $Revision: 1.28 $ * - * last change: $Author: hr $ $Date: 2006-08-15 10:41:20 $ + * last change: $Author: rt $ $Date: 2008-01-30 08:28:50 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -61,18 +61,22 @@ namespace dbaccess { sal_Int32 nPosition; sal_Int32 nType; + sal_Int32 nScale; + ::rtl::OUString sDefaultValue; SelectColumnDescription() :nPosition( 0 ) ,nType( 0 ) + ,nScale( 0 ) ,sDefaultValue() { } - SelectColumnDescription( sal_Int32 _nPosition, sal_Int32 _nType, const ::rtl::OUString& _rDefaultValue ) + SelectColumnDescription( sal_Int32 _nPosition, sal_Int32 _nType, sal_Int32 _nScale, const ::rtl::OUString& _rDefaultValue ) :nPosition( _nPosition ) ,nType( _nType ) + ,nScale( _nScale ) ,sDefaultValue( _rDefaultValue ) { } |