summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 13:08:10 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 13:08:10 +0000
commit31fe9fe0b4659909897c0f7269fa5f72375a2260 (patch)
tree4b8d51376f5203cfa5a9c87d72f5bbb7f6d84cf9
parent15966ff7e926da742837f96e4971379e3de2a8b5 (diff)
INTEGRATION: CWS insight01 (1.3.280); FILE MERGED
2004/07/06 11:58:17 oj 1.3.280.4: RESYNC: (1.3-1.4); FILE MERGED 2004/05/25 08:39:39 tl 1.3.280.3: #i25411# comments updated 2004/05/19 09:23:24 tl 1.3.280.2: #i25411# documentation changed 2004/05/05 11:57:09 tl 1.3.280.1: #i25411# new database properties added
-rw-r--r--offapi/com/sun/star/text/textfield/DatabaseNextSet.idl31
1 files changed, 24 insertions, 7 deletions
diff --git a/offapi/com/sun/star/text/textfield/DatabaseNextSet.idl b/offapi/com/sun/star/text/textfield/DatabaseNextSet.idl
index 4570b9abc6b4..f2924aba84c2 100644
--- a/offapi/com/sun/star/text/textfield/DatabaseNextSet.idl
+++ b/offapi/com/sun/star/text/textfield/DatabaseNextSet.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: DatabaseNextSet.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 00:45:09 $
+ * last change: $Author: hr $ $Date: 2004-08-02 14:08:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,25 +72,42 @@ module com { module sun { module star { module text { module textfield {
//=============================================================================
/** specifies service of a text field that increments a database selection.
@see com::sun::star::text::TextField
+
+ Only one of the properties <member>DataBaseName</member>,
+ <member>DataBaseURL</member> and <member>DataBaseResource</member>
+ should be set. If more than one are set the last one will be used.
*/
published service DatabaseNextSet
{
service com::sun::star::text::DependentTextField;
- /** contains the name of the database.
+ /** specifies the database name.
*/
- [property]string DataBaseName;
+ [property] string DataBaseName;
+
/** determines the interpretation of the property DataTableName.
@see com::sun::star::sdb::CommandType
*/
- [property]long DataCommandType;
+ [property] long DataCommandType;
+
/** contains the name of the database table, query or a statement depending
on the DataCommandType property.
*/
- [property]string DataTableName;
+ [property] string DataTableName;
+
/** determins whether the database selection is set to the next position or not.
*/
- [property]string Condition;
+ [property] string Condition;
+
+ /** indicates the URL of a database file.
+ @since #i25411#
+ */
+ [optional, property] string DataBaseURL;
+
+ /** indicates a connection URL, which locates a database driver.
+ @since #i25411#
+ */
+ [optional, property] string DataBaseResource;
};