Re: SQLJSON
I think it would be pretty straigtforward if SQLJSON would have the exact same interface as SQLXML. The sole difference I see is that in contrast to supporting JAXP it has to support JSONP (https://json-processing-spec.java.net/nonav/releases/1.0/fcs/javadocs/index.html).
From: pgsql-jdbc-owner@postgresql.org [mailto:pgsql-jdbc-owner@postgresql.org] On Behalf Of Dave Cramer
Sent: Freitag, 26. Juni 2015 16:57
To: List
Subject: [JDBC] SQLJSON
I'm looking for comments on how to implement a SQLJSON type in JDBC.
As there is no getSQLJSON in the resultset interface this could only be used in getObject.
Notionally it would model itself after SQLXML. https://docs.oracle.com/javase/7/docs/api/index.html?java/sql/SQLXML.html
Dave Cramer