Skip to content

Menu

Eclipse SQL Editor Plugin

March 07, 2006

I wanted to find out how hard it is to build a language editor in Eclipse. Back then I didn’t know of any open-source SQL editor (and there wasn’t one for Eclipse either), so I started with a small prototype as an experiment.

Note: This article was written in 2006. For that reason, the screenshots show an older version of Eclipse.

The editor supports syntax highlighting.

It also has a rudimentary form of auto-completion—in this case, it only inserts the keyword "SELECT".

And it can render query results in a tabular view.

Takeaway: once I got used to Eclipse’s architecture and conventions, it was surprisingly straightforward.

Software Engineering #eclipse #jvm #java

Read next

Aug 01, 2009 software-engineering

Groovy, EMF and UML2

I wrote the Groovy EMF builder and the Groovy UML2 builder. These tools use the builder concept of the programming language Groovy to ease the processing of Eclipse Modelling Framework...

#groovy #eclipse #model-driven #jvm #java
Read more
Writing Eclipse plugins with Groovy
Jan 17, 2008 software-engineering

Writing Eclipse plugins with Groovy

Writing plugins for Eclipse with other languages than Java is not officially supported, but there is a way to write an Eclipse plugin with Groovy only.

#groovy #eclipse #jvm #java
Read more