Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

DTP 1.7 M6 New and Noteworthy

Back to DTP Main Page

This page documents a few of the things we think are New & Noteworthy for the DTP 1.7 (Galileo) M6 milestone release.

Download the latest 1.7 M6 milestone build [here]. Our M6 candidate will be released as part of the Galileo Release Train on March 23, 2009.

DTP Connectivity

BZ 253523- Define Database Vendor and Version profile property mapping in an Extension Point

Since DTP provides very little as far as built-in out-of-box database recognizers, adopters can now add their own databaseRecognition extension for the databases that they use. Instead of implementing an IDatabaseRecognizer that covers the specific product name and version metadata returned by their JDBC drivers, a developer can simply define the mapping in plugin.xml between a JDBC database product name and version values to those of a DTP enablement driver template.

This is the first step in beefing up DTP APIs to allow easier access to some of the more obscure DTP functionality without going through the UI.

BZ 253606 - Support handling of Transient Connection Profile instance

In previous releases, DTP did not have the concept of temporary or "transient" connection profiles. You could create a profile, but it would show up in the Data Source Explorer, which may not be what you need. Now you have the option of creating a transient profile instance via API from a set of profile properties, which you can use to connect to and access the profile data source. When the workbench is closed, these transient profiles are then disconnected and disposed of properly.

Back to the top