On Thu, Feb 14, 2013 at 9:21 PM, Aristedes Maniatis wrote:
> In our Cayenne ROP application we have some tables with very large BLOB
> fields. We want to be able to fetch the remaining columns to the client,
> without the BLOBs. I am after some ideas on how to best approach this:
>
>
> 1. Create t
Yep, this is the way to do it:
> Connection conn =
> serverRuntime.getDataDomain().getNode("nodeName").getDataSource().getConnection();
Also in 3.1 this API is streamlined a bit and can be rewritten as:
Connection conn = serverRuntime.getDataSource("nodeName").getConnection();
Andrus
On Feb