vote up 3 vote down star

Would a LINQ for java be a useful tool? I have been working on a tool that will allow a java object to map to a row in a database.

  1. Would this be useful for java programmers?
  2. What features would be useful?
flag

64% accept rate
LINQ by itself has absolutely no relation databases. In .NET, one can define a LINQ Provider which can talk to a database, or to Amazon.com, or to XML, or just to native .NET objects. – Justice Dec 7 '08 at 9:19

5 Answers

vote up 10 vote down

LINQ for Java would be lovely, but the problem is the language integration.

Java doesn't have anything as concise as lambda expressions, and they're one of the bedrocks of LINQ. I suppose they could layer the query expression support on top of normal Java without lambda expressions, by making the expansion create anonymous inner classes - but it would be pretty hideous. You'd also need expression trees if you wanted to do anything like LINQ to SQL.

Checked exceptions might get in the way, but we'd have to see. The equivalent of IQueryable would need to have some sort of general checked exception - or possibly it could be generic in both the element type and the exception type...

Anyway, this is all pie-in-the-sky - given the troubles the Java community is having with closures, I think it would be folly to expect anything like LINQ in Java itself earlier than about 2012. Of course, that's not to say it wouldn't be possible in a "Java-like" language. Groovy has certain useful aspects already, for instance.

For the library side, Hibernate already provides a "non-integrated" version of a lot of the features of LINQ to SQL. For LINQ to Objects, you should look at the Google Java Collections API - it's a lot of the same kind of thing (filtering, projecting etc). Without lambdas it's a lot fiddlier to use, of course - but it's still really, really handy. (I use the Google Collections code all the time at work, and I'd hate to go back to the "vanilla" Java collections.)

link|flag
what troubles are the java community experiencing with closures? – Claudiu Dec 7 '08 at 8:37
@Claudiu: Several proposals, none of them entirely satisfactory. Last I heard it sounded unlikely that it would even get into Java 7, due to there being so much discussion. This is a downside of Java being so democratic. – Jon Skeet Dec 7 '08 at 8:44
vote up 2 vote down

There is a Google Group exploring this idea:

http://groups.google.com/group/jlinq

link|flag
vote up 1 vote down

Hibernate uses HQL. You can do Object but only for Relational Databases

link|flag
vote up 2 vote down

Take a look at Quaere

link|flag
vote up 1 vote down

It's worth noting that Scala 2.8 is going to have LINQ support...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.