Executing DQL scripts with Repoint

Introduction

Repoint allows you to run API scripts but you cannot run a DQL script. I’ve modified the base plugin so it can run DQL scripts. The modifications have been made using the code found at http://repoint.svn.sourceforge.net/ (which I think has the latest version) as the baseline

Requirements

  • Repoint Standalone / Plugin
  • Java 1.6 (the attached files have been compiled with that version, recompile the attached source code with your JDK and update the jar file if necessary)

Installation and configuration

  • Replace your %Eclipse%\plugins\com.documentum.devprog.eclipsePlugin_2.5.0.0010\devprogPlugin.jar with the attached file and restart Eclipse/Repoint
  • To run a DQL Script just use the usual syntax to run scripts: @Absolute_Path_To_Script_File

Notes

  • This has been tested on Eclipse 3.6.1 with the Repoint plugin and JDK 1.6 and in a Repoint Standalone installation.
  • It supports the following script formats:

DQL1;

GO

DQL2;

GO

and

DQL1;

DQL2;

Source Code at GitHub