jaketrent
jaketrent

Reputation: 1173

Xquery support in IntelliJ Idea?

Has anyone had any success developing XQuery in IntelliJ? Specifically, does anyone know of any code completion or code syntax highlighting abilities that exist already or that you've built?

Upvotes: 4

Views: 3252

Answers (3)

the hand of NOD
the hand of NOD

Reputation: 1789

I use this plugin: XQuery-IntelliJ-Plugin

and it is quite good, as I can integrate the Saxon-HE jar file that I also use at runtime and I can run my Xqueries and see the output immediately in the console.

Upvotes: 0

Charles Foster
Charles Foster

Reputation: 338

The IntelliJ XQuery Support Plugin supports XQuery 3.0, syntax and error highlighting, keyword completion, code navigation, function and variable completion, code formatting amongst other things. It can also run XQuery against Saxon, MarkLogic, BaseX, eXist, Sedna, Zorba and Oracle XDB or any other XQuery processor which supports the XQJ standard.

Upvotes: 6

jaketrent
jaketrent

Reputation: 1173

The best, stable option that I've used so far is Rob Whitby's IntelliJ-Idea-Xquery goodness. Basic functionality: code highlighting, core api code completition, better tabbing. Easy install (drop in config xml file)

Upvotes: 3

Related Questions