Hi Rifat, On 16 Dec 2010, at 15:00, Rifat Ozcan wrote: > 1. It seems that D2RQ does not work with new versions of ARQ such as > 2.8.6? I am wondering if that is the case (or am I doing something wrong), > does anybody know a work around solution for this?
Using D2RQ with recent versions of ARQ 2.8.6 is untested and quite likely needs a bit of work because the internals of ARQ still tend to change with every version. D2RQ still uses ARQ 2.7. > 2. Is it possible to convert a ModelD2RQ object into a normal Model object > so that we can work on it as if we loaded the RDF file. I just want to get > the info in DB to an RDF model, but then I want to work on this model > without any relation with the DB and DBRQ. Try something like: ModelD2RQ dbModel = ... Model memModel = ModelFactory.createDefaultModel(); memModel.add(dbModel); Depending on the size of your database, this could consume a lot of memory obviously. Best, Richard > > Thanks, > Rifat Ozcan > > > > ------------------------------------------------------------------------------ > Learn how Oracle Real Application Clusters (RAC) One Node allows customers > to consolidate database storage, standardize their database environment, and, > should the need arise, upgrade to a full multi-node Oracle RAC database > without downtime or disruption > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > d2rq-map-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/d2rq-map-devel ------------------------------------------------------------------------------ Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database environment, and, should the need arise, upgrade to a full multi-node Oracle RAC database without downtime or disruption http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ d2rq-map-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/d2rq-map-devel
