Database Contributions to SQL Development Tools

org.eclipse.datatools.sqltools.editor.core.dbFactories

[Enter the first release in which this extension point appears.]

This extension point provides support for SQL editing. Extensions register a dbFactory of the type org.eclipse.datatools.sqltools.core.IDBFactory which will be responsible for creating editor-related classes.

<!ELEMENT extension (dbFactory+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT dbFactory EMPTY>

<!ATTLIST dbFactory

factoryClass      CDATA #REQUIRED

product           CDATA #REQUIRED

version           CDATA #REQUIRED

description       CDATA #IMPLIED

supportsDebugging (true | false) "false">


<extension point=

"org.eclipse.datatools.sqltools.editor.core.dbFactories"

>

<dbFactory product=

"Sybase Adaptive Server Enterprise"

version=

"12.5.x"

factoryClass=

"com.sybase.stf.dmp.ase.ASEFactory"

>

</dbFactory>

</extension>

Contributes an ASE extenstion to the SQL editor. Note: dtpeditor uses product and version information to find the associated database model definition contribution defined by DTP dbdefinition.

Value of the attribute dbFactory must be a fully qualified name of a Java class that implements the interface org.eclipse.datatools.sqltools.core.IDBFactory.

[Enter information about supplied implementation of this extension point.]