diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-01-15 13:12:45 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-01-15 13:12:45 +0000 |
commit | 1578df45bbc9cd75e2e2f22982ae5c9248045821 (patch) | |
tree | be0f639d76149ee8b03f51b6d1107ae4ed061c31 /offapi | |
parent | ec71e9a226afbcde827b6fe1245895ea349961c3 (diff) |
INTEGRATION: CWS dba22b (1.9.232); FILE MERGED
2006/12/12 09:22:21 fs 1.9.232.1: removed useless 'DocMerge from ...' comments which disturb grepping for identifiers
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sdbc/XRowUpdate.idl | 22 | ||||
-rw-r--r-- | offapi/com/sun/star/sdbc/XStatement.idl | 9 |
2 files changed, 4 insertions, 27 deletions
diff --git a/offapi/com/sun/star/sdbc/XRowUpdate.idl b/offapi/com/sun/star/sdbc/XRowUpdate.idl index cc1a213ac55c..fa8df5e6bb6d 100644 --- a/offapi/com/sun/star/sdbc/XRowUpdate.idl +++ b/offapi/com/sun/star/sdbc/XRowUpdate.idl @@ -4,9 +4,9 @@ * * $RCSfile: XRowUpdate.idl,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-08 03:54:30 $ + * last change: $Author: vg $ $Date: 2007-01-15 14:11:56 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -62,13 +62,11 @@ module com { module sun { module star { module sdbc { -// DocMerge from xml: interface com::sun::star::io::com::sun::star::sdbc::XRowUpdate /** is used to update data which is collected in a row. */ published interface XRowUpdate: com::sun::star::uno::XInterface { - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateNull /** gives a nullable column a null value. @param columnIndex the position of the column @@ -78,7 +76,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateNull([in]long columnIndex) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateBoolean /** updates a column with a boolean value. @param columnIndex the position of the column @@ -90,7 +87,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateBoolean([in]long columnIndex, [in]boolean x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateByte /** updates a column with a byte value. @param columnIndex the position of the column @@ -102,7 +98,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateByte([in]long columnIndex, [in]byte x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateShort /** updates a column with a short value. @param columnIndex the position of the column @@ -114,7 +109,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateShort([in]long columnIndex, [in]short x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateInt /** updates a column with an long value. @param columnIndex the position of the column @@ -126,7 +120,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateInt([in]long columnIndex, [in]long x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateLong /** updates a column with a hyper value. @param columnIndex the position of the column @@ -138,7 +131,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateLong([in]long columnIndex, [in]hyper x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateFloat /** updates a column with a float value. @param columnIndex the position of the column @@ -150,7 +142,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateFloat([in]long columnIndex, [in]float x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateDouble /** updates a column with a double value. @param columnIndex the position of the column @@ -162,7 +153,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateDouble([in]long columnIndex, [in]double x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateString /** updates a column with a string value. @param columnIndex the position of the column @@ -174,7 +164,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateString([in]long columnIndex, [in]string x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateBytes /** updates a column with a byte array value. @param columnIndex the position of the column @@ -186,7 +175,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface void updateBytes([in]long columnIndex, [in]sequence<byte> x) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateDate /** updates a column with a date value. @param columnIndex the position of the column @@ -199,7 +187,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateTime /** updates a column with a time value. @param columnIndex the position of the column @@ -212,7 +199,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateTimestamp /** updates a column with a timestamp value. @param columnIndex the position of the column @@ -226,7 +212,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateBinaryStream /** updates a column with a stream value. @param columnIndex the position of the column @@ -242,7 +227,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface [in]long length) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateCharacterStream /** updates a column with a stream value. @param columnIndex the position of the column @@ -258,7 +242,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface [in]long length) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateObject /** updates a column with an object value. @param columnIndex the position of the column @@ -271,7 +254,6 @@ published interface XRowUpdate: com::sun::star::uno::XInterface raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::io::com::sun::star::sdbc::XRowUpdate::updateNumericObject /** updates a column with an object value. @param columnIndex the position of the column diff --git a/offapi/com/sun/star/sdbc/XStatement.idl b/offapi/com/sun/star/sdbc/XStatement.idl index 5a9e49094560..3a12329467db 100644 --- a/offapi/com/sun/star/sdbc/XStatement.idl +++ b/offapi/com/sun/star/sdbc/XStatement.idl @@ -4,9 +4,9 @@ * * $RCSfile: XStatement.idl,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: rt $ $Date: 2005-09-08 03:55:34 $ + * last change: $Author: vg $ $Date: 2007-01-15 14:12:45 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -49,7 +49,6 @@ published interface XResultSet; -// DocMerge from xml: interface com::sun::star::sdbc::XStatement /** is used for executing a static SQL statement and obtaining the results produced by it. @@ -68,7 +67,6 @@ published interface XStatement: com::sun::star::uno::XInterface { - // DocMerge from xml: method com::sun::star::sdbc::XStatement::executeQuery /** executes a SQL statement that returns a single ResultSet. @param sql the SQL statement which should be executed @@ -80,7 +78,6 @@ published interface XStatement: com::sun::star::uno::XInterface XResultSet executeQuery([in]string sql) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::sdbc::XStatement::executeUpdate /** executes an SQL INSERT, UPDATE, or DELETE statement. In addition, SQL statements that return nothing, such as SQL DDL statements, can be executed. @@ -95,7 +92,6 @@ published interface XStatement: com::sun::star::uno::XInterface long executeUpdate([in]string sql) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::sdbc::XStatement::execute /** executes a SQL statement that may return multiple results. @@ -130,7 +126,6 @@ published interface XStatement: com::sun::star::uno::XInterface boolean execute([in]string sql) raises (SQLException); //------------------------------------------------------------------------- - // DocMerge from xml: method com::sun::star::sdbc::XStatement::getConnection /** returns the <type scope="com::sun::star::sdbc">Connection</type> object |