Home
last modified time | relevance | path

Searched refs:metadata (Results 1 – 25 of 86) sorted by relevance

1234

/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ !
H A DDbTools.java126metadata.supportsCatalogsInTableDefinitions(), metadata.supportsSchemasInTableDefinitions()); in getNameComponentSupport()
129metadata.supportsCatalogsInIndexDefinitions(), metadata.supportsSchemasInIndexDefinitions()); in getNameComponentSupport()
132metadata.supportsCatalogsInDataManipulation(), metadata.supportsSchemasInDataManipulation()); in getNameComponentSupport()
135metadata.supportsCatalogsInProcedureCalls(), metadata.supportsSchemasInProcedureCalls()); in getNameComponentSupport()
138metadata.supportsCatalogsInPrivilegeDefinitions(), metadata.supportsSchemasInPrivilegeDefinitions(… in getNameComponentSupport()
151 if (metadata == null) { in composeTableName()
163 catalogAtStart = metadata.isCatalogAtStart(); in composeTableName()
185 return doComposeTableName(metadata, in composeTableName()
247 catalogAtStart = metadata.isCatalogAtStart(); in doComposeTableName()
496 results = metadata.getTypeInfo(); in createStandardColumnPart()
[all …]
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/ !
H A DPostgresqlTables.java52 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()
113 statement = metadata.getConnection().createStatement(); in dropObject()
142 …String sql = DbTools.createSqlCreateTableStatement(descriptor, metadata.getConnection(), null, "(M… in createTable()
[all …]
H A DPostgresqlViews.java52 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 DPostgresqlCatalog.java48 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()
/trunk/main/offapi/com/sun/star/rdf/ !
H A DXDocumentMetadataAccess.idl97 the content and the RDF metadata of an ODF document.
99 data in the metadata manifest easier.
163 /** add a metadata file to the manifest.
170 metadata file into the manifest graph</li>
207 metadata file into the manifest graph</li>
262 metadata file from the manifest graph</li>
328 /** initialize document metadata from a storage.
354 that contains the metadata.rdf</p>
373 /** store document metadata to a storage.
400 /** loads document metadata from a medium.
[all …]
H A DXMetadatable.idl57 <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 DXDocumentRepository.idl50 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 DXNamedGraph.idl105 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
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/sdbcx/ !
H A DSqlTableHelper.java80 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()
244 results = metadata.getIndexInfo(catalog, schemaName, tableName, false, false); in readIndexes()
[all …]
H A DOColumnContainer.java48 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 DOCatalog.java53 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 DOIndexContainer.java123 …private static boolean isPrimaryKeyIndex(XDatabaseMetaData metadata, Object catalog, String schema… in isPrimaryKeyIndex() argument
126 results = metadata.getPrimaryKeys(catalog, schema, table); in isPrimaryKeyIndex()
/trunk/main/reportbuilder/java/ !
H A Dlibformula.properties34 ….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…
/trunk/main/offapi/com/sun/star/ !
H A Dmodules.idl212 /** 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
/trunk/main/extensions/source/macosx/spotlight/ !
H A DOOoSpotlightImporter.m92 //first get the metadata
157 or nil if the metadata is not present */
194 or nil if the metadata is not present */
H A DGetMetadataForFile.m33 Get metadata attributes from file
44 /* Pull any available metadata from the file at the specified path */
/trunk/main/offapi/com/sun/star/text/ !
H A DInContentMetadata.idl50 /** is a <type>TextContent</type> that can be used to attach RDF metadata
63 /** The <type>InContentMetadata</type> can have RDF metadata attached. */
/trunk/main/offapi/com/sun/star/text/textfield/ !
H A DMetadataField.idl54 is specified by RDF metadata.
68 /** The <type>MetadataField</type> can have RDF metadata attached. */
/trunk/main/offapi/com/sun/star/sheet/ !
H A DDataPilotTablePositionData.idl38 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>
/trunk/main/xmloff/source/forms/ !
H A Dproperty_meta_data.hxx30 namespace xmloff { namespace metadata namespace
/trunk/main/reportbuilder/java/com/sun/star/report/function/metadata/ !
H A DMetaDataFunctionCategory.java23 package com.sun.star.report.function.metadata;
H A DAuthorFunctionDescription.java23 package com.sun.star.report.function.metadata;
H A DTitleFunctionDescription.java23 package com.sun.star.report.function.metadata;
H A DAuthorFunction.java23 package com.sun.star.report.function.metadata;
H A DTitleFunction.java23 package com.sun.star.report.function.metadata;

Completed in 109 milliseconds

1234