Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SQL Query Builder Component API

Revision as of 11:53, 18 October 2007 by Unnamed Poltroon (Talk) (New page: ← Back to SQL Development Tools page = Introduction = The SQL Query Builder is a component for visually editing SQL DML statements. It can be consumed by o...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Back to SQL Development Tools page

Introduction

The SQL Query Builder is a component for visually editing SQL DML statements. It can be consumed by other UI components such as editors, dialogs and wizards. As input, it can accept .sql files created by the DTP SQL File Editor or it can accept SQL statements passed by consumers in the form of strings.

CVS Location

The SQL Query Builder is located in datatools part of Eclipse CVS repository:

Host: dev.eclipse.org
Repository path: /cvsroot/datatools

The SQL Query Builder plugin is

org.eclipse.datatools.sqltools.sqlbuilder

which is located in CVS under the folder

org.eclipse.datatools.sqltools

There is also an examples plugin

org.eclipse.datatools.sqltools.sqlbuilder.examples

which is located in CVS under the folder

org.eclipse.datatools.sqltools.examples

Components

The main component class is

org.eclipse.datatools.sqltools.sqlbuilder.SQLBuilder

Back to the top