pgxml 1.0 released

From: Jeroen van Vianen <jeroen(at)design(dot)nl>
To: pgsql-hackers(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-announce(at)postgresql(dot)org
Subject: pgxml 1.0 released
Date: 1999-10-10 12:35:01
Message-ID: 4.1.19991010143417.0092ba20@mail.design.nl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-announce pgsql-general pgsql-hackers

Hi,

I'd like to announce the release of pgxml 1.0, a tool which outputs
PostgreSQL queries in XML format.

Here's a small example:

Run
pgxml -d books -c "select * from books" \
-t library,book -s books.css -o books.xml

The output might look like this

<?xml version="1.0"?>
<?xml-stylesheet href="books.css"type="text/css"?>
<!-- Generated by pgxml 1.0 -->
<!DOCTYPE library [
<!ELEMENT library (book)*>
<!ELEMENT book (id?, title?, author?)>
<!ELEMENT id (#PCDATA)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT author (#PCDATA)>
]>
<library>
<book>
<id>1</id>
<title>Hitchhiker's Guide to the Galaxy</title>
<author>Douglas Adams</author>
</book>

[...]

<book>
<id>4</id>
<title>The C Programming Language</title>
<author>Brian W. Kernighan and Dennis M. Ritchie</author>
</book>
</library>

Check it out at http://www.morinel.demon.nl/pgxml/ or download it from
http://www.morinel.demon.nl/pgxml/pgxml-1.0.tar.gz

As I make heavy use of stylesheets, my website is best viewed with Mozilla
or M$ IE 5 :-(

Cheers,

Jeroen

Browse pgsql-announce by date

  From Date Subject
Next Message Jeroen van Vianen 1999-10-11 18:39:51 pgxml 1.0 released
Previous Message D'Arcy J.M. Cain 1999-10-09 12:32:42 [PyGreSQL] Announce: PyGreSQL 2.4 released

Browse pgsql-general by date

  From Date Subject
Next Message Bruce Momjian 1999-10-10 14:42:18 Re: [GENERAL] You are really hosed.
Previous Message amy cheng 1999-10-10 12:18:30 Re: [GENERAL] stored procedure revisited

Browse pgsql-hackers by date

  From Date Subject
Next Message Martin Weinberg 1999-10-10 13:38:43 Re: [HACKERS] memory problems in copying large table to STDOUT
Previous Message Bruce Momjian 1999-10-09 20:21:56 Re: [HACKERS] Next release is 7.0(?)