summaryrefslogtreecommitdiff
path: root/offapi/com
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 13:07:44 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-08-02 13:07:44 +0000
commit5e5aae573a5fea3f77f32fd858904bb6baf8879b (patch)
tree07db6fb89f02c4fbc4e45a060bd3c48a7a6259ae /offapi/com
parent57e4006e1a043f5bc4172a3a846a701ed3823581 (diff)
INTEGRATION: CWS insight01 (1.3.280); FILE MERGED
2004/07/06 11:56:21 oj 1.3.280.4: RESYNC: (1.3-1.4); FILE MERGED 2004/05/25 08:33:45 tl 1.3.280.3: #i25411# comments updated 2004/05/19 09:19:36 tl 1.3.280.2: #i25411# documentation changed 2004/05/05 11:57:08 tl 1.3.280.1: #i25411# new database properties added
Diffstat (limited to 'offapi/com')
-rw-r--r--offapi/com/sun/star/text/fieldmaster/Database.idl31
1 files changed, 24 insertions, 7 deletions
diff --git a/offapi/com/sun/star/text/fieldmaster/Database.idl b/offapi/com/sun/star/text/fieldmaster/Database.idl
index 82ef8d09d634..ff7f506d730d 100644
--- a/offapi/com/sun/star/text/fieldmaster/Database.idl
+++ b/offapi/com/sun/star/text/fieldmaster/Database.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Database.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 00:42:09 $
+ * last change: $Author: hr $ $Date: 2004-08-02 14:07:44 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -72,31 +72,48 @@ module com { module sun { module star { module text { module FieldMaster {
//=============================================================================
/** specifies service of a Database field master.
@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 Database
{
service com::sun::star::text::TextFieldMaster;
//------------------------------------------------------------------------
- /** contains the name of the data source.
+ /** specifies the database name.
*/
- [property] string DataBaseName;
+ [property] string DataBaseName;
+
//------------------------------------------------------------------------
/** contains the CommandType this
can be the name of a data base table, a data query or a statement.
(0 = table, 1 = query, 2 = statement)
*/
- [property] long CommandType;
+ [property] long CommandType;
//------------------------------------------------------------------------
/** contains the command string. Depending on the CommandType property this
can be the name of a data base table, a data query or a statement.
*/
- [property] string DataTableName;
+ [property] string DataTableName;
//------------------------------------------------------------------------
/** contains the name of the data base table.
*/
- [property] string DataColumnName;
+ [property] string DataColumnName;
+
+ //------------------------------------------------------------------------
+ /** 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;
+
};
//=============================================================================