summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 13:08:23 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 13:08:23 +0000
commitfafe4af30894239f227d40c194329739a1658d7a (patch)
treeba9b5713b4bbb60dcf616c62fe15c27d0f452a2b /offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl
parent31fe9fe0b4659909897c0f7269fa5f72375a2260 (diff)
INTEGRATION: CWS insight01 (1.3.280); FILE MERGED
2004/07/06 12:03:29 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:25 tl 1.3.280.2: #i25411# documentation changed 2004/05/05 11:57:09 tl 1.3.280.1: #i25411# new database properties added
Diffstat (limited to 'offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl')
-rw-r--r--offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl34
1 files changed, 26 insertions, 8 deletions
diff --git a/offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl b/offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl
index 32585467c860..6409e6116f6a 100644
--- a/offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl
+++ b/offapi/com/sun/star/text/textfield/DatabaseNumberOfSet.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: DatabaseNumberOfSet.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 00:45:22 $
+ * last change: $Author: hr $ $Date: 2004-08-02 14:08:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -73,28 +73,46 @@ module com { module sun { module star { module text { module textfield {
/** specifies service of text field that conditionally set the selection of
a database cursor.
@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 DatabaseNumberOfSet
{
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;
+
/** contains the conditions that determins whether the SetNumber is applied or not.
*/
- [property]string Condition;
+ [property] string Condition;
+
/** cotains the set number that is to be applied.
*/
- [property]long SetNumber;
+ [property] long SetNumber;
+
+ /** 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;
};