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

Difference between revisions of "Results View Control"

m (New page: ← Back to SQL Development Tools page = Introduction = The DTP Results View now provides a ResultsViewControl component for displaying SQL execution results...)
(No difference)

Revision as of 07:26, 17 December 2007

Back to SQL Development Tools page

Introduction

The DTP Results View now provides a ResultsViewControl component for displaying SQL execution results. The ResultsViewControl can be consumed by other UI components such as editors, dialogs and wizards, enabling them to show SQL execution results in their own user-interface.

ResultsViewControl

Location

The ResultsViewControl is in the package

org.eclipse.datatools.sqltools.result.ui.view.

sqlBuilder = new SQLBuiin the plugin

org.eclipse.datatools.sqltools.result

API

The ResultsViewControl should be instantiated using the constructor

ResultsViewControl(ResultsView)

passing null as the ResultsView parameter.

The caller can request the ResultsViewControl to use the Preferences defined for the SQL Results View or not, using the method

setUsePreferences(boolean)

If setUsePreferences(true) is called, the preferences for SQL Results View relating to the user-interface will be used. These control, for example, whether results are shown in a single window or multiple windows, in text mode or grid mode.

If setUsePreferences(false) is called, the preferences defaults for the SQL Results View are used.

/* * Add the results view */ _resultsViewControl = new ResultsViewControl(null); /* * Tell the results view to use preferences */ _resultsViewControl.setUsePreferences(true); try { _resultsViewControl.init(null, null); } catch (PartInitException e) { e.printStackTrace(); } _resultsViewControl.createPartControl(resultsComposite);

Filtering Results


Signature: Jeremyl.sybase.com 06:26, 17 December 2007 (EST) </br>

Example usage

Back to the top