Re: partially hollow objects

2013-02-19 Thread Mike Kienenberger
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

Re: [ANN] Cayenne 3.1B2 released

2013-02-19 Thread Andrus Adamchik
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