| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
| <HTML> |
| <HEAD><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
| <title>Open Data Access</title> |
| <style>@import url("file:/D:/Lang/eclipse_32/plugins/org.eclipse.sdk_3.2.0.v20060605/book.css");</style> |
| <style>@import url("file:/D:/Lang/eclipse_32/configuration/org.eclipse.osgi/bundles/69/1/.cp/schema.css");</style> |
| </HEAD> |
| <BODY> |
| <H1><CENTER>Open Data Access</CENTER></H1> |
| <p></p> |
| <h6 class=CaptionFigColumn id=header>Identifier: </h6>org.eclipse.datatools.connectivity.oda.dataSource<p></p> |
| <h6 class=CaptionFigColumn id=header>Since: </h6>3.0 |
| <p></p> |
| |
| <p> |
| <h6 class=CaptionFigColumn id=header>Description: </h6>This extension point is used to support the extension of design-time and run-time data source access by a data application. Each extension must implement the Open Data Access (ODA) Java runtime interfaces defined in the <i>org.eclipse.datatools.connectivity.oda</i> package.</p> |
| <p><h6 class=CaptionFigColumn id=header>Configuration Markup:</h6></p> |
| <p class=code id=dtd><!ELEMENT <a name="e.extension">extension</a> (<a href="#e.dataSource">dataSource</a> , <a href="#e.dataSet">dataSet</a>+)></p> |
| <p class=code id=dtd><!ATTLIST extension</p> |
| <p class=code id=dtdAttlist>point CDATA #REQUIRED<p class=code id=dtdAttlist>id CDATA #IMPLIED<p class=code id=dtdAttlist>name CDATA #IMPLIED></p> |
| <p></p> |
| <ul class=ConfigMarkup id=attlistDesc> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.dataSource">dataSource</a> (<a href="#e.traceLogging">traceLogging</a>? , <a href="#e.properties">properties</a>?)></p> |
| <p class=code id=dtd><!ATTLIST dataSource</p> |
| <p class=code id=dtdAttlist>id CDATA #REQUIRED<p class=code id=dtdAttlist>odaVersion CDATA "3.0"<p class=code id=dtdAttlist>defaultDisplayName CDATA #IMPLIED<p class=code id=dtdAttlist>driverClass CDATA #REQUIRED<p class=code id=dtdAttlist>setThreadContextClassLoader (true | false) "false"></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| The definition of a type of ODA data source extension for use at design-time and run-time.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>id</b> - A fully qualified ID that uniquely identifies this ODA data source extension within an ODA consumer application's environment. If a data source designer extension (TBD) for this ODA driver is available, the value of this attribute must match that of the designer extension's <i>id</i> attribute in its data source element.</li> |
| <li><b>odaVersion</b> - Version of the ODA interfaces for which this driver is developed. This element is required and should take the format of Major.Minor or Major.Minor.Service (e.g. 3.0 or 2.0.1).</li> |
| <li><b>defaultDisplayName</b> - The display name of the ODA data source extension. Its value can be localized by using the plugin.properties mechanism. Default to the extension id if no display name is specified. |
| It can be used by an ODA consumer application's designer tool in displaying a list of ODA data source extensions, when they do not have a corresponding data source editor (data source UI extension point).</li> |
| <li><b>driverClass</b> - Concrete class that implements the <i>org.eclipse.datatools.connectivity.oda.IDriver</i> interface. This is the entry point of the ODA runtime driver. The same driver may support multiple data source extensions.</li> |
| <li><b>setThreadContextClassLoader</b> - If true, the consumer of the ODA runtime extension plug-in should set the thread context class loader to the one used to load this driver before calling any ODA interface method. |
| Any data source plug-in extension with this flag set to true would take precedence, and is applied to all data source extensions implemented by this plug-in. |
| <br> |
| If the thread context class loader being set is the OSGi class loader that was used to load this ODA runtime plugin, it is not designed to be used by a plugin to in turn load additional classes. If further class loading is needed, it is up to individual ODA runtime plugin implementation to provide its own URLClassLoader, and switch thread context class loader as appropriate.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.dataSet">dataSet</a> (<a href="#e.dataTypeMapping">dataTypeMapping</a>+ , <a href="#e.properties">properties</a>?)></p> |
| <p class=code id=dtd><!ATTLIST dataSet</p> |
| <p class=code id=dtdAttlist>id CDATA #REQUIRED<p class=code id=dtdAttlist>defaultDisplayName CDATA #IMPLIED></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| The definition of a type of data set supported by the dataSource extension.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>id</b> - A fully qualified ID that uniquely identifies this ODA data set definition within an ODA consumer application's environment.</li> |
| <li><b>defaultDisplayName</b> - The display name of the ODA data set definition. Its value can be localized by using the plugin.properties mechanism. Default to its id if no display name is specified.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.dataTypeMapping">dataTypeMapping</a> (<a href="#e.alternativeOdaDataType">alternativeOdaDataType</a>*)></p> |
| <p class=code id=dtd><!ATTLIST dataTypeMapping</p> |
| <p class=code id=dtdAttlist>nativeDataType CDATA #IMPLIED<p class=code id=dtdAttlist>nativeDataTypeCode CDATA #REQUIRED<p class=code id=dtdAttlist>odaScalarDataType (Date|Double|Integer|String|Time|Timestamp|Decimal|Blob|Clob) "String"></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| A data types mapping from a data provider's native data type to one or more ODA data types. |
| Each native data type must be mapped to a primary ODA scalar data type. The driver can optionally provide a list of alternate ODA data types to which it is capable of converting a native data type. |
| This data type mapping facilitates all ODA consumers to map from the same set of ODA data types to its own application-specific data types.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>nativeDataType</b> - Native data type name (a string). Used for information only.</li> |
| <li><b>nativeDataTypeCode</b> - Native data type code (an integer). Its value must match one of the data type codes returned in the driver's ODA interface implementation.</li> |
| <li><b>odaScalarDataType</b> - The primary ODA scalar data type which the native type maps to. Supported ODA data types are: Date, Double, Integer, String, Time, Timestamp, Decimal, Blob and Clob.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.alternativeOdaDataType">alternativeOdaDataType</a> EMPTY></p> |
| <p class=code id=dtd><!ATTLIST alternativeOdaDataType</p> |
| <p class=code id=dtdAttlist>odaScalarDataType (Date|Double|Integer|String|Time|Timestamp|Decimal|Blob|Clob) ></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| Provide an alternative mapping to an ODA scalar data type.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>odaScalarDataType</b> - The ODA scalar data type to which the native type may be converted by the driver.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.traceLogging">traceLogging</a> EMPTY></p> |
| <p class=code id=dtd><!ATTLIST traceLogging</p> |
| <p class=code id=dtdAttlist>logLevel CDATA "WARNING"<p class=code id=dtdAttlist>logFileNamePrefix CDATA #IMPLIED<p class=code id=dtdAttlist>logDirectory CDATA #IMPLIED<p class=code id=dtdAttlist>logFormatterClass CDATA #IMPLIED></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| Configures the ODA run-time driver's trace logging settings for the data source extension. |
| The configured values are passed through to the driver's implementation of the <code>IDriver.setLogConfiguration</code> method. |
| <br>It is up to individual ODA driver on how to honor any of these trace logging attributes as appropriate. |
| |
| <br><br>Note: The trace logging configuration specified in the plug-in PDE .options file would take precedence over those configured in this element, if the debug tracing flag is set to "true". |
| <br>The ODA plug-in's PDE tracing options, listed below for cross reference, match the attributes of this element. |
| <br> |
| <plug-in Id>/debug = true/false |
| <br> |
| <plug-in Id>/traceLogging/logLevel |
| <br> |
| <plug-in Id>/traceLogging/logFileNamePrefix |
| <br> |
| <plug-in Id>/traceLogging/logDirectory |
| <br> |
| <plug-in Id>/traceLogging/logFormatterClass</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>logLevel</b> - The name or numeric value for the driver's log level. |
| <br>The log levels' names and corresponding numeric values are: |
| <br> |
| "SEVERE" = 1000; |
| "WARNING" = 900; |
| "INFO" = 800; |
| "CONFIG" = 700; |
| "FINE" = 500; |
| "FINER" = 400; |
| "FINEST" = 300; |
| "ALL" = 0; |
| "OFF" = 1001 or higher .</li> |
| <li><b>logFileNamePrefix</b> - A string prefix for driver's log file name.</li> |
| <li><b>logDirectory</b> - Directory for log file.</li> |
| <li><b>logFormatterClass</b> - The class name of a concrete log formatter, suitable for use by the driver-specific logging utility.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.property">property</a> (<a href="#e.choice">choice</a>*)></p> |
| <p class=code id=dtd><!ATTLIST property</p> |
| <p class=code id=dtdAttlist>name CDATA #REQUIRED<p class=code id=dtdAttlist>defaultDisplayName CDATA #IMPLIED<p class=code id=dtdAttlist>type (string|choice) "string"<p class=code id=dtdAttlist>canInherit (true | false) "true"<p class=code id=dtdAttlist>defaultValue CDATA #IMPLIED<p class=code id=dtdAttlist>isEncryptable (true | false) "false"<p class=code id=dtdAttlist>allowsEmptyValueAsNull (true | false) "true"></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| A property whose value can be edited at design-time using an ODA consumer application's designer tool. Its value is then passed to the ODA runtime driver during run-time.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>name</b> - Unique name of the property.</li> |
| <li><b>defaultDisplayName</b> - The default display name. Its value can be localized by using the plugin.properties mechanism.</li> |
| <li><b>type</b> - Type of the property. The property type could be one of the values listed in the Restriction enumerations.</li> |
| <li><b>canInherit</b> - Reserved.</li> |
| <li><b>defaultValue</b> - Default value of the property, if no property value is set.</li> |
| <li><b>isEncryptable</b> - A flag indicating whether this property value is encryptable. Setting it to "true" indicates to an ODA consumer application that this property's value should be encrypted.</li> |
| <li><b>allowsEmptyValueAsNull</b> - A flag that indicates whether an empty value of this property can be treated as a null value. This attribute setting applies when passing a property value to this ODA runtime driver. This attribute may be used to accommodate the case where a property value's input control does not provide the means to specify a null value.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.propertyGroup">propertyGroup</a> (<a href="#e.property">property</a>+)></p> |
| <p class=code id=dtd><!ATTLIST propertyGroup</p> |
| <p class=code id=dtdAttlist>name CDATA #REQUIRED<p class=code id=dtdAttlist>defaultDisplayName CDATA #IMPLIED></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| A grouping of one or more properties in an ODA consumer application's designer tool. The group attributes are for display only. All properties listed under a propertyGroup are handled as scalar properties at run-time.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>name</b> - </li> |
| <li><b>defaultDisplayName</b> - The default display name. Its value can be localized by using the plugin.properties mechanism.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.propertyVisibility">propertyVisibility</a> EMPTY></p> |
| <p class=code id=dtd><!ATTLIST propertyVisibility</p> |
| <p class=code id=dtdAttlist>name CDATA #REQUIRED<p class=code id=dtdAttlist>visibility (change|lock|hide) ></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| Used to set the visibility level of the named property when it is shown in the property sheet of an ODA consumer application's designer tool.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>name</b> - The name of a property that is defined either by this data source extension or is a system-defined property.</li> |
| <li><b>visibility</b> - The valid options are: change, hide, lock.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.choice">choice</a> EMPTY></p> |
| <p class=code id=dtd><!ATTLIST choice</p> |
| <p class=code id=dtdAttlist>name CDATA #REQUIRED<p class=code id=dtdAttlist>value CDATA #IMPLIED<p class=code id=dtdAttlist>defaultDisplayName CDATA #IMPLIED></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| Choice of property values.</p> |
| <br> |
| <ul class=ConfigMarkup id=attlistDesc> |
| <li><b>name</b> - Name of the choice</li> |
| <li><b>value</b> - Value to be used, if the given choice is selected.</li> |
| <li><b>defaultDisplayName</b> - The default display name. Its value can be localized by using the plugin.properties mechanism.</li> |
| </ul> |
| <br><p class=code id=dtd><!ELEMENT <a name="e.properties">properties</a> (<a href="#e.property">property</a>* , <a href="#e.propertyGroup">propertyGroup</a>* , <a href="#e.propertyVisibility">propertyVisibility</a>*)></p> |
| <p></p> |
| <p class=ConfigMarkup id=elementDesc> |
| A collection of property definitions in a data source extension or its supported data set definitions.</p> |
| <br><br> |
| <h6 class=CaptionFigColumn id=header>Examples: </h6><p> |
| <pre> |
| <p class=code id=tag><extension |
| point=<p class=code id=cstring>"org.eclipse.datatools.connectivity.oda.dataSource"</p><p class=code id=tag>></p> |
| <p class=code id=tag><dataSource |
| odaVersion=<p class=code id=cstring>"3.0"</p><p class=code id=tag> |
| driverClass=<p class=code id=cstring>"org.eclipse.datatools.connectivity.oda.flatfile.FlatFileDriver"</p><p class=code id=tag> |
| defaultDisplayName=<p class=code id=cstring>"Flat File Data Source"</p><p class=code id=tag> |
| id=<p class=code id=cstring>"org.eclipse.datatools.connectivity.oda.flatfile"</p><p class=code id=tag> |
| setThreadContextClassLoader=<p class=code id=cstring>"false"</p><p class=code id=tag>></p> |
| <p class=code id=tag><properties></p> |
| <p class=code id=tag><propertyGroup |
| defaultDisplayName=<p class=code id=cstring>"Connection Properties"</p><p class=code id=tag> |
| name=<p class=code id=cstring>"connectionProperties"</p><p class=code id=tag>></p> |
| <p class=code id=tag><property |
| type=<p class=code id=cstring>"string"</p><p class=code id=tag> |
| defaultDisplayName=<p class=code id=cstring>"Home Folder"</p><p class=code id=tag> |
| canInherit=<p class=code id=cstring>"true"</p><p class=code id=tag> |
| name=<p class=code id=cstring>"HOME"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><property |
| type=<p class=code id=cstring>"string"</p><p class=code id=tag> |
| defaultDisplayName=<p class=code id=cstring>"Character Set"</p><p class=code id=tag> |
| canInherit=<p class=code id=cstring>"true"</p><p class=code id=tag> |
| name=<p class=code id=cstring>"CHARSET"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><property |
| type=<p class=code id=cstring>"string"</p><p class=code id=tag> |
| canInherit=<p class=code id=cstring>"true"</p><p class=code id=tag> |
| defaultDisplayName=<p class=code id=cstring>"Includes Data Type (Yes/No)"</p><p class=code id=tag> |
| name=<p class=code id=cstring>"INCLTYPELINE"</p><p class=code id=tag>/></p> |
| <p class=code id=tag></propertyGroup></p> |
| <p class=code id=tag></properties></p> |
| <p class=code id=tag></dataSource></p> |
| <p class=code id=tag><dataSet |
| defaultDisplayName=<p class=code id=cstring>"Flat File Data Set"</p><p class=code id=tag> |
| id=<p class=code id=cstring>"org.eclipse.datatools.connectivity.oda.flatfile.dataSet"</p><p class=code id=tag>></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"BIT"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-7"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Integer"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"TINYINT"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-6"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Integer"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"SMALLINT"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"5"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Integer"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"INTEGER"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"4"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Integer"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"BIGINT"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-5"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Decimal"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"FLOAT"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"6"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Double"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"REAL"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"7"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Double"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"DOUBLE"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"8"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Double"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"NUMERIC"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"2"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Decimal"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"DECIMAL"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"3"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Decimal"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"CHAR"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"1"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"VARCHAR"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"12"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"LONGVARCHAR"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-1"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"DATE"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"91"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Date"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"TIME"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"92"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Time"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"TIMESTAMP"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"93"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Timestamp"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"BINARY"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-2"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"VARBINARY"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-3"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"LONGVARBINARY"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"-4"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"BOOLEAN"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"16"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"Integer"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"BLOB"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"2004"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag><dataTypeMapping |
| nativeDataType=<p class=code id=cstring>"CLOB"</p><p class=code id=tag> |
| nativeDataTypeCode=<p class=code id=cstring>"2005"</p><p class=code id=tag> |
| odaScalarDataType=<p class=code id=cstring>"String"</p><p class=code id=tag>/></p> |
| <p class=code id=tag></dataSet></p> |
| <p class=code id=tag></extension></p> |
| </pre> |
| </p> |
| <p></p> |
| |
| <h6 class=CaptionFigColumn id=header>API Information: </h6>The data source extension's driver must implement the interfaces defined in the <i>org.eclipse.datatools.connectivity.oda</i> package. See the package's JavaDoc documentation and API interfaces for more information. |
| <p></p> |
| |
| <h6 class=CaptionFigColumn id=header>Supplied Implementation: </h6>The plug-in <i>org.eclipse.datatools.connectivity.oda.flatfile</i>, supplied with the Eclipse DTP Connectivity source, provides an example for implementing a simple ODA run-time extension. |
| <br> |
| In addition, a set of default implementation of the main ODA runtime interfaces are provided in the |
| <i>org.eclipse.datatools.connectivity.oda.impl</i> package. |
| These classes assume the behavior of a simple ODA driver, |
| and have labeled TODO tasks for a driver developer to implement data source specific behavior. |
| These concrete classes are provided for use as templates or base classes to aid in the development of an ODA custom driver. Their use is purely optional. |
| <p></p> |
| |
| <br> |
| <p class=note id=copyright> |
| Copyright (c) 2004-2006 Actuate Corporation. |
| All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html |
| <p></p> |
| |
| </p> |
| </BODY> |
| </HTML> |