Wednesday, 13 October 2010

XML Indenter to use with MarkLogic jEdit plugin

The XML Indenter module is officially obsolete, but still works and is required by MLJeditXQuery-0.7.1.

You can find it here.

Friday, 1 October 2010

Convert a Orace timestamp to a datetime you can use in an hsqldb

Here's how you can convert a timestamp column in an ORACLE DB into a string you can use as a datetime in an INSERT statement in HSQLDB.

select to_char(current_timestamp, 'yyyy-mm-dd hh24:mi:ss.ff9') from dual;