Column Data Accessor

org.eclipse.wst.rdb.data.core.columnDataAccessor

This extension point is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.

The columnDataAccessor allows to contribute an IColumnDataAccessor object to be used with a particular vendor, version and datatype. The contributed object is then used to perform the data access in the table editor, allowing to implement support for database-specific data types.

<!ELEMENT extension (accessor)*>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT accessor EMPTY>

<!ATTLIST accessor

vendor   CDATA #IMPLIED

version  CDATA #IMPLIED

dataType CDATA #IMPLIED

class    CDATA #REQUIRED>

This element specifies an IColumnDataAccessor to be used with a combination of vendor/version/data type. If several contributions matches a given column, the most specific contribution is used (the one that specifies the highest number of criteria).