| /AOO42X/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ |
| H A D | DbTools.java | 122 …private static NameComponentSupport getNameComponentSupport(XDatabaseMetaData metadata, ComposeRul… in getNameComponentSupport() argument 126 … metadata.supportsCatalogsInTableDefinitions(), metadata.supportsSchemasInTableDefinitions()); in getNameComponentSupport() 129 … metadata.supportsCatalogsInIndexDefinitions(), metadata.supportsSchemasInIndexDefinitions()); in getNameComponentSupport() 132 … metadata.supportsCatalogsInDataManipulation(), metadata.supportsSchemasInDataManipulation()); in getNameComponentSupport() 135 … metadata.supportsCatalogsInProcedureCalls(), metadata.supportsSchemasInProcedureCalls()); in getNameComponentSupport() 138 …metadata.supportsCatalogsInPrivilegeDefinitions(), metadata.supportsSchemasInPrivilegeDefinitions(… in getNameComponentSupport() 150 …XDatabaseMetaData metadata, String catalog, String schema, String table, boolean quote, ComposeRul… in composeTableName() argument 151 if (metadata == null) { in composeTableName() 154 String quoteString = metadata.getIdentifierQuoteString(); in composeTableName() 155 NameComponentSupport nameComponentSupport = getNameComponentSupport(metadata, composeRule); in composeTableName() [all …]
|
| /AOO42X/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/ |
| H A D | PostgresqlTables.java | 52 private XDatabaseMetaData metadata; field in PostgresqlTables 55 …public PostgresqlTables(Object lock, XDatabaseMetaData metadata, PostgresqlCatalog catalog, List<S… in PostgresqlTables() argument 57 this.metadata = metadata; in PostgresqlTables() 63 …NameComponents nameComponents = DbTools.qualifiedNameComponents(metadata, name, ComposeRule.InData… in createObject() 68 results = metadata.getTables( in createObject() 75 … ret = new PostgresqlTable(metadata.getConnection(), this, nameComponents.getTable(), in createObject() 91 …NameComponents nameComponents = DbTools.qualifiedNameComponents(metadata, name, ComposeRule.InData… in dropObject() 99 …String composedName = DbTools.composeTableName(metadata, nameComponents.getCatalog(), nameComponen… in dropObject() 103 …String unquotedName = DbTools.composeTableName(metadata, nameComponents.getCatalog(), nameComponen… in dropObject() 113 statement = metadata.getConnection().createStatement(); in dropObject() [all …]
|
| H A D | PostgresqlViews.java | 52 private XDatabaseMetaData metadata; field in PostgresqlViews 54 …public PostgresqlViews(Object lock, XDatabaseMetaData metadata, PostgresqlCatalog catalog, List<St… in PostgresqlViews() argument 56 this.metadata = metadata; in PostgresqlViews() 62 …NameComponents nameComponents = DbTools.qualifiedNameComponents(metadata, name, ComposeRule.InData… in createObject() 78 statement = metadata.getConnection().prepareStatement(sql); in createObject() 124 …String sql = String.format("DROP VIEW %s", DbTools.composeTableName(metadata, propertySet, Compose… in dropObject() 127 statement = metadata.getConnection().createStatement(); in dropObject() 146 …DbTools.composeTableName(metadata, descriptor, ComposeRule.InTableDefinitions, false, false, true), in appendObject() 148 statement = metadata.getConnection().createStatement(); in appendObject()
|
| H A D | PostgresqlCatalog.java | 48 results = metadata.getTables(Any.VOID, "%", "%", new String[] { "VIEW", "TABLE" }); in refreshTables() 57 tables = new PostgresqlTables(this, metadata, this, names); in refreshTables() 72 results = metadata.getTables(Any.VOID, "%", "%", new String[] { "VIEW" }); in refreshViews() 80 views = new PostgresqlViews(this, metadata, this, names); in refreshViews()
|
| /AOO42X/main/offapi/com/sun/star/rdf/ |
| H A D | XDocumentMetadataAccess.idl | 93 /** document metadata functionality related to the "manifest.rdf". 97 the content and the RDF metadata of an ODF document. 99 data in the metadata manifest easier. 118 /** get the unique ODF element with the given metadata reference. 121 a metadata reference, comprising the stream name and the XML ID 125 the ODF element with the given metadata references if it exists, 147 /** get the names of all metadata files with a given type. 153 the names of all metadata graphs that have a <code>rdf:type</code> 163 /** add a metadata file to the manifest. 170 metadata file into the manifest graph</li> [all …]
|
| H A D | XMetadatable.idl | 57 <type>XMetadatable</type> may have the side effect of creating a metadata 69 /** a metadata reference, comprising the stream name and the XML ID. 72 Note that this metadata reference must be unique for the ODF document. 74 A pair of two empty strings signifies "no metadata reference". 79 if the given metadata reference is invalid, or not unique 86 /** creates a metadata reference for this object, if necessary. 89 If this object already has a metadata reference, do nothing; 90 otherwise, create metadata reference with a fresh, unique XML ID
|
| H A D | XDocumentRepository.idl | 50 For example, the methods allow for manipulating in-content metadata, 120 or Object is of a type that can not have RDFa metadata attached. 148 RDFa metadata attached. 179 RDFa metadata attached.
|
| H A D | XNamedGraph.idl | 105 Note that the ODF elements that can have metadata attached all 140 Note that the ODF elements that can have metadata attached all 177 Note that the ODF elements that can have metadata attached all
|
| /AOO42X/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/ |
| H A D | SqlTableHelper.java | 74 …public List<ColumnDescription> readColumns(XDatabaseMetaData metadata, String catalogName, String … in readColumns() argument 80 XResultSet results = metadata.getColumns(catalog, schema, table, "%"); in readColumns() 136 …public Map<String, OKey> readKeys(XDatabaseMetaData metadata, String catalogName, String schemaNam… in readKeys() argument 139 …OKey primaryKey = readPrimaryKey(metadata, catalogName, schemaName, tableName, isCaseSensitive, ta… in readKeys() 141 readForeignKeys(metadata, catalogName, schemaName, tableName, isCaseSensitive, keys, table); in readKeys() 145 private OKey readPrimaryKey(XDatabaseMetaData metadata, in readPrimaryKey() argument 157 results = metadata.getPrimaryKeys(catalog, schemaName, tableName); in readPrimaryKey() 178 private void readForeignKeys(XDatabaseMetaData metadata, in readForeignKeys() argument 186 results = metadata.getImportedKeys(catalog, schemaName, tableName); in readForeignKeys() 211 …String referencedName = DbTools.composeTableName(metadata, catalogReturned, schemaReturned, nameRe… in readForeignKeys() [all …]
|
| H A D | OColumnContainer.java | 48 private XDatabaseMetaData metadata; field in OColumnContainer 59 …aseSensitive, List<ColumnDescription> columnDescriptions, OTable table, XDatabaseMetaData metadata) in OColumnContainer() argument 63 this.metadata = metadata; in OColumnContainer() 87 …List<ColumnDescription> newColumns = new SqlTableHelper().readColumns(metadata, table.catalogName,… in createObject() 102 … String composedName = DbTools.composeTableNameForSelect(metadata.getConnection(), table); in createObject() 103 … extraColumnInfo = DbTools.collectColumnInformation(metadata.getConnection(), composedName, "*"); in createObject() 141 … DbTools.composeTableName(metadata, table, ComposeRule.InTableDefinitions, false, false, true), in appendObject() 159 String quote = metadata.getIdentifierQuoteString(); in dropObject() 161 … DbTools.composeTableName(metadata, table, ComposeRule.InTableDefinitions, false, false, true), in dropObject()
|
| H A D | OCatalog.java | 53 protected XDatabaseMetaData metadata; field in OCatalog 55 public OCatalog(XDatabaseMetaData metadata) { in OCatalog() argument 56 this.metadata = metadata; in OCatalog() 161 …return DbTools.composeTableName(metadata, catalog, schema, table, false, ComposeRule.InDataManipul… in buildName()
|
| H A D | OIndexContainer.java | 123 …private static boolean isPrimaryKeyIndex(XDatabaseMetaData metadata, Object catalog, String schema… in isPrimaryKeyIndex() argument 126 results = metadata.getPrimaryKeys(catalog, schema, table); in isPrimaryKeyIndex()
|
| /AOO42X/main/reportbuilder/java/ |
| H A D | libformula.properties | 34 ….pentaho.reporting.libraries.formula.functions.metadata.Author.class=com.sun.star.report.function.… 35 …ntaho.reporting.libraries.formula.functions.metadata.Author.description=com.sun.star.report.functi… 36 ….pentaho.reporting.libraries.formula.functions.metadata.Title.class=com.sun.star.report.function.m… 37 …ntaho.reporting.libraries.formula.functions.metadata.Title.description=com.sun.star.report.functio…
|
| /AOO42X/main/offapi/com/sun/star/ |
| H A D | modules.idl | 212 /** RDF (Resource Description Framework) and metadata interfaces. 215 This module provides interfaces for storing and accessing metadata 242 Documents that support metadata implement the interfaces 245 Furthermore, all elements of ODF documents that may have metadata attached
|
| /AOO42X/main/extensions/source/macosx/spotlight/ |
| H A D | OOoSpotlightImporter.m | 92 //first get the metadata 157 or nil if the metadata is not present */ 194 or nil if the metadata is not present */
|
| H A D | GetMetadataForFile.m | 33 Get metadata attributes from file 44 /* Pull any available metadata from the file at the specified path */
|
| /AOO42X/main/offapi/com/sun/star/text/ |
| H A D | InContentMetadata.idl | 50 /** is a <type>TextContent</type> that can be used to attach RDF metadata 63 /** The <type>InContentMetadata</type> can have RDF metadata attached. */
|
| /AOO42X/main/offapi/com/sun/star/sheet/ |
| H A D | DataPilotTablePositionData.idl | 38 table, and is used to retrieve its metadata. The <member>PositionType</member> 40 in turn determines the type of metadata contained in the <member>PositionData</member>
|
| /AOO42X/main/offapi/com/sun/star/text/textfield/ |
| H A D | MetadataField.idl | 54 is specified by RDF metadata. 68 /** The <type>MetadataField</type> can have RDF metadata attached. */
|
| /AOO42X/main/reportbuilder/java/com/sun/star/report/function/metadata/ |
| H A D | MetaDataFunctionCategory.java | 23 package com.sun.star.report.function.metadata;
|
| H A D | TitleFunctionDescription.java | 23 package com.sun.star.report.function.metadata;
|
| H A D | AuthorFunctionDescription.java | 23 package com.sun.star.report.function.metadata;
|
| H A D | TitleFunction.java | 23 package com.sun.star.report.function.metadata;
|
| H A D | AuthorFunction.java | 23 package com.sun.star.report.function.metadata;
|
| /AOO42X/main/xmloff/source/forms/ |
| H A D | property_meta_data.hxx | 30 namespace xmloff { namespace metadata namespace
|