summaryrefslogtreecommitdiff
path: root/svx/source/form/sdbdatacolumn.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form/sdbdatacolumn.cxx')
-rw-r--r--svx/source/form/sdbdatacolumn.cxx321
1 files changed, 321 insertions, 0 deletions
diff --git a/svx/source/form/sdbdatacolumn.cxx b/svx/source/form/sdbdatacolumn.cxx
new file mode 100644
index 000000000000..9bfbff479b28
--- /dev/null
+++ b/svx/source/form/sdbdatacolumn.cxx
@@ -0,0 +1,321 @@
+/*************************************************************************
+ *
+ * $RCSfile: sdbdatacolumn.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: hr $ $Date: 2003-03-27 15:02:41 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef SVX_FORM_SDBDATACOLUMN_HXX
+#include "sdbdatacolumn.hxx"
+#endif
+
+//..............................................................................
+namespace svxform
+{
+//..............................................................................
+
+ using namespace ::com::sun::star::uno;
+ using namespace ::com::sun::star::lang;
+ using namespace ::com::sun::star::beans;
+ using namespace ::com::sun::star::sdbc;
+ using namespace ::com::sun::star::util;
+ using namespace ::com::sun::star::io;
+ using namespace ::com::sun::star::container;
+
+ //==========================================================================
+ //= DataColumn - a class wrapping an object implementing a sdb::DataColumn service
+ //==========================================================================
+ DataColumn::DataColumn(const Reference< ::com::sun::star::beans::XPropertySet>& _rxIFace)
+ {
+ m_xPropertySet = _rxIFace;
+ m_xColumn = Reference< ::com::sun::star::sdb::XColumn>(_rxIFace, UNO_QUERY);
+ m_xColumnUpdate = Reference< ::com::sun::star::sdb::XColumnUpdate>(_rxIFace, UNO_QUERY);
+
+ if (!m_xPropertySet.is() || !m_xColumn.is())
+ {
+ m_xPropertySet = NULL;
+ m_xColumn = NULL;
+ m_xColumnUpdate = NULL;
+ }
+ }
+
+ // Reference< XPropertySet>
+ Reference< XPropertySetInfo> DataColumn::getPropertySetInfo() const throw( RuntimeException )
+ {
+ return m_xPropertySet->getPropertySetInfo();
+ }
+
+ void DataColumn::setPropertyValue(const ::rtl::OUString& aPropertyName, const Any& aValue) throw( UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException, RuntimeException )
+ {
+ m_xPropertySet->setPropertyValue(aPropertyName, aValue);
+ }
+
+ Any DataColumn::getPropertyValue(const ::rtl::OUString& PropertyName) const throw( UnknownPropertyException, WrappedTargetException, RuntimeException )
+ {
+ return m_xPropertySet->getPropertyValue(PropertyName);
+ }
+
+ void DataColumn::addPropertyChangeListener(const ::rtl::OUString& aPropertyName, const Reference< XPropertyChangeListener>& xListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException )
+ {
+ m_xPropertySet->addPropertyChangeListener(aPropertyName, xListener);
+ }
+
+ void DataColumn::removePropertyChangeListener(const ::rtl::OUString& aPropertyName, const Reference< XPropertyChangeListener>& aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException )
+ {
+ m_xPropertySet->removePropertyChangeListener(aPropertyName, aListener);
+ }
+
+ void DataColumn::addVetoableChangeListener(const ::rtl::OUString& PropertyName, const Reference< XVetoableChangeListener>& aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException )
+ {
+ m_xPropertySet->addVetoableChangeListener(PropertyName, aListener);
+ }
+
+ void DataColumn::removeVetoableChangeListener(const ::rtl::OUString& PropertyName, const Reference< XVetoableChangeListener>& aListener) throw( UnknownPropertyException, WrappedTargetException, RuntimeException )
+ {
+ m_xPropertySet->removeVetoableChangeListener(PropertyName, aListener);
+ }
+
+ // XColumn
+ sal_Bool DataColumn::wasNull() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->wasNull();
+ }
+
+ ::rtl::OUString DataColumn::getString() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getString();
+ }
+
+ sal_Bool DataColumn::getBoolean() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getBoolean();
+ }
+
+ sal_Int8 DataColumn::getByte() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getByte();
+ }
+
+ sal_Int16 DataColumn::getShort() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getShort();
+ }
+
+ sal_Int32 DataColumn::getInt() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getInt();
+ }
+
+ sal_Int64 DataColumn::getLong() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getLong();
+ }
+
+ float DataColumn::getFloat() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getFloat();
+ }
+
+ double DataColumn::getDouble() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getDouble();
+ }
+
+ Sequence< sal_Int8 > DataColumn::getBytes() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getBytes();
+ }
+
+ Date DataColumn::getDate() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getDate();
+ }
+
+ Time DataColumn::getTime() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getTime();
+ }
+
+ DateTime DataColumn::getTimestamp() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getTimestamp();
+ }
+
+ Reference< XInputStream> DataColumn::getBinaryStream() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getBinaryStream();
+ }
+
+ Reference< XInputStream> DataColumn::getCharacterStream() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getCharacterStream();
+ }
+
+ Any DataColumn::getObject(const Reference< XNameAccess>& typeMap) throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getObject(typeMap);
+ }
+
+ Reference< XRef> DataColumn::getRef() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getRef();
+ }
+
+ Reference< XBlob> DataColumn::getBlob() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getBlob();
+ }
+
+ Reference< XClob> DataColumn::getClob() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getClob();
+ }
+
+ Reference< XArray> DataColumn::getArray() throw( SQLException, RuntimeException )
+ {
+ return m_xColumn->getArray();
+ }
+
+ // XColumnUpdate
+ void DataColumn::updateNull() throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateNull();
+ }
+
+ void DataColumn::updateBoolean(sal_Bool x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateBoolean(x);
+ }
+
+ void DataColumn::updateByte(sal_Int8 x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateByte(x);
+ }
+
+ void DataColumn::updateShort(sal_Int16 x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateShort(x);
+ }
+
+ void DataColumn::updateInt(sal_Int32 x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateInt(x);
+ }
+
+ void DataColumn::updateLong(sal_Int64 x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateLong(x);
+ }
+
+ void DataColumn::updateFloat(float x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateFloat(x);
+ }
+
+ void DataColumn::updateDouble(double x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateDouble(x);
+ }
+
+ void DataColumn::updateString(const ::rtl::OUString& x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateString(x);
+ }
+
+ void DataColumn::updateBytes(const Sequence< sal_Int8 >& x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateBytes(x);
+ }
+
+ void DataColumn::updateDate(const com::sun::star::util::Date& x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateDate(x);
+ }
+
+ void DataColumn::updateTime(const Time& x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateTime(x);
+ }
+
+ void DataColumn::updateTimestamp(const DateTime& x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateTimestamp(x);
+ }
+
+ void DataColumn::updateBinaryStream(const Reference< XInputStream>& x, sal_Int32 length) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateBinaryStream(x, length);
+ }
+
+ void DataColumn::updateCharacterStream(const Reference< XInputStream>& x, sal_Int32 length) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateCharacterStream(x, length);
+ }
+
+ void DataColumn::updateObject(const Any& x) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateObject(x);
+ }
+
+ void DataColumn::updateNumericObject(const Any& x, sal_Int32 scale) throw( SQLException, RuntimeException )
+ {
+ m_xColumnUpdate->updateNumericObject(x, scale);
+ }
+
+ //..............................................................................
+} // namespace svxform
+//..............................................................................