Skip to search.
jena-dev · Jena Users

Group Information

  • Members: 2056
  • Category: Software
  • Founded: Sep 19, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 1419 - 1448 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1419 Jeremy Carroll
jjchplb Offline Send Email
Aug 1, 2002
9:23 am
Try using the RDF/XML-ABBREV writer. You pass the string "RDF/XML-ABBREV" as the lang argument to a Model.write method. Jeremy...
1420 crischmuller Offline Send Email Aug 1, 2002
9:35 pm
Good day, I was just wondering what the reasoning was behind letting the getAll() method clear the contents of the QueryResults instance? In other words after...
1421 Luke McDowell
lucasm713 Offline Send Email
Aug 2, 2002
12:15 am
I've been running some tests to see how well the RDB storage scales up to workloads that I would like to be able to handle. I realize that using RDB involves...
1422 Seaborne, Andy
andyseaborne Offline Send Email
Aug 2, 2002
10:49 am
Hi there, I guess that this behaviour surprises you :-) The main problem is the operation shouldn't really be in the QueryResults interface at all - or at ...
1423 Seaborne, Andy
andyseaborne Offline Send Email
Aug 2, 2002
11:04 am
Luke, I can answer some of your points: Dave Reynolds, who wrote the RDB support, is away this week. This mismatch between the fine-grained Jena API and the...
1424 kers@...
flitz_cloud Offline Send Email
Aug 2, 2002
2:05 pm
Dear All, This is just a test to see if I can now post to jena-dev again. You don't need to reply or anything - if I see it myself, I shall assume it all...
1425 kers@...
flitz_cloud Offline Send Email
Aug 2, 2002
2:15 pm
(this message originally got eaten by Yahoo's sudden decision that I was persona non grata; Andy's reply has alluded to the stuff I describe below). ... For...
1426 kers@...
flitz_cloud Offline Send Email
Aug 2, 2002
2:17 pm
... Good question. There's nothing in the proposed revised architecture that would "stamp" statements as inferred as opposed to explicit. (Indeed, since one...
1427 kers@...
flitz_cloud Offline Send Email
Aug 2, 2002
2:22 pm
... I mean "a query that is equivalent to listSubjects"....
1428 Libby Miller
millibby Offline Send Email
Aug 2, 2002
2:34 pm
Just out of interest, Inkling does SquishQL to SQL rewriting, and checks to see whether the database supported can accept SQL queries before dumbing down to...
1429 Seaborne, Andy
andyseaborne Offline Send Email
Aug 2, 2002
2:47 pm
... I'm wrong here. That is what it *should* do. The constructor QueryResultsMem(QueryResultsMem) is not public and it takes an unnecessary copy despite what...
1430 kers@...
flitz_cloud Offline Send Email
Aug 2, 2002
2:53 pm
... Thanks, Libby; I'll take a look sometime. Chris "swordfish, hedgehog - where's the elephant?" Dollin...
1431 Luke McDowell
lucasm713 Offline Send Email
Aug 2, 2002
4:51 pm
(I've combined responses to Chris's and Andy's posts because my answer is related) Thanks for all the suggestions. I will also look into the Inkling ...
1432 Seaborne, Andy
andyseaborne Offline Send Email
Aug 2, 2002
5:21 pm
Luke, You'll have to wait for Dave about the bulk loading. Again, inside an explicit transation might be faster. How often do you load the database? ...
1433 Daniele Capursi
dcapursi Offline Send Email
Aug 5, 2002
9:35 am
Hi all, does anyone know why I have the following exception every time my program using Jena terminates? I'm using an Oracle/MMGeneric DB to open the default...
1434 Daniele Capursi
dcapursi Offline Send Email
Aug 5, 2002
9:41 am
... Sorry, I was wrong. I get the error message only if I don't close the model. (i.e. if I don't call model.close())....
1435 Dave Reynolds
derihy Offline Send Email
Aug 5, 2002
11:04 am
I haven't seen this but looking at the code I can see it could happen. Would be easy to fix but in fact will be fixed anyway as a side-effect of proposal I...
1436 Dave Reynolds
derihy Offline Send Email
Aug 5, 2002
12:27 pm
... Not at present. The current Model.add(model) code does a single listStatements() to the database which is about as effecient as the current API can manage....
1437 Luke McDowell
lucasm713 Offline Send Email
Aug 5, 2002
4:38 pm
... (and later said...) ... I'm not certain, but I think that your idea for preloading the literal/resources table would make a huge difference. I turned on...
1438 jonesdh1211 Offline Send Email Aug 5, 2002
10:00 pm
We have created a subclass of DAMLClass, and Jena doesn't seem to recognize it as a DAMLClass. Is our assumption correct that we should be able to create a...
1439 Dave Reynolds
derihy Offline Send Email
Aug 6, 2002
7:46 am
... Actually it only does that for the objects of the statements, the subject and predicate data is retrieved inline. The reason for not retrieving the objects...
1440 Brian McBride
bwmb Offline Send Email
Aug 7, 2002
9:46 am
I thought I'd pass this on, though you may see it elsewhere. Brian =================================================================== WWW2003 CALL FOR PAPERS ...
1441 jandanils Offline Send Email Aug 8, 2002
1:55 pm
Have you considered making ModelMem (and other Jena-classes) serializable? Really easy :) I'm working on a J2EE architecture using Jena as the RDF-storage ...
1442 Seaborne, Andy
andyseaborne Offline Send Email
Aug 8, 2002
2:50 pm
Avril, I hope the RDQL tutorial gave you the necessary understanding of RDQL - guessing from your email message you have read that. ...
1443 Dave Reynolds
derihy Offline Send Email
Aug 9, 2002
8:00 am
Interesting thought! Did you do the same for Resources, Literals etc? If so how did you cope with the Model reference in Resources? If you tag ResourceImpl etc...
1444 Dave Reynolds
derihy Offline Send Email
Aug 9, 2002
12:38 pm
I'm made a few modifications to the jena RDB module in the sourceforge CVS. As usual, being in CVS means that it passes all current regression tests but ...
1445 Dave Reynolds
derihy Offline Send Email
Aug 9, 2002
1:28 pm
Luke, I've taken a look at the bulk loading issue and, as you may have seen from my ealier message, added a model.loadAll() command to do a bulk load. I tested...
1446 Luke McDowell
lucasm713 Offline Send Email
Aug 9, 2002
6:50 pm
Dave, Thanks very much for your prompt help, again. I've tried things out and this helps considerably, though there is something strange going on. (Aside:...
1447 lszomb Offline Send Email Aug 10, 2002
5:23 am
I download the new version of Jena toolkit (1.5.0) today and try to run the example of RDQL. But some error messages are displayed on the screen as below: ...
1448 sgchance_jena Offline Send Email Aug 10, 2002
7:52 am
I have a similar problem. I downloaded Jena 1.5.0 and I ran the Sample5 code okay. But I can't run the tutorials. They will not compile. When I try to...
Messages 1419 - 1448 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help