Re: SQLAlchemy in Clojure?

2010-10-19 Thread Stuart Campbell
On 19 October 2010 02:18, Sean Devlin francoisdev...@gmail.com wrote:

 Okay, I just finished a Python app for work.  Using SQLAlchemy was a
 joy.  Has anyone ported this yet?


I've never used SQLAlchemy. How does it compare with e.g. Django's ORM?

Regards,
Stuart

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

SQLAlchemy in Clojure?

2010-10-18 Thread Sean Devlin
Okay, I just finished a Python app for work.  Using SQLAlchemy was a
joy.  Has anyone ported this yet?

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Re: SQLAlchemy in Clojure?

2010-10-18 Thread Andrew Gwozdziewycz
I think it's very unlikely that someone will port SQLAlchemy to java.
However, there are lots of ORMs which maybe suitable for you to use
from clojure--maybe with some macros to make it a bit nicer. WikiPedia
has a great list of these:

http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software#Java

Having never used any of them, I can't recommend one. I too really
like SQLAlchemy myself.

On Mon, Oct 18, 2010 at 11:18 AM, Sean Devlin francoisdev...@gmail.com wrote:
 Okay, I just finished a Python app for work.  Using SQLAlchemy was a
 joy.  Has anyone ported this yet?

 --
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clojure@googlegroups.com
 Note that posts from new members are moderated - please be patient with your 
 first post.
 To unsubscribe from this group, send email to
 clojure+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en



-- 
http://www.apgwoz.com

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en


Re: SQLAlchemy in Clojure?

2010-10-18 Thread Michael Ossareh

 On Mon, Oct 18, 2010 at 11:18 AM, Sean Devlin francoisdev...@gmail.com
 wrote:
  Okay, I just finished a Python app for work.  Using SQLAlchemy was a
  joy.  Has anyone ported this yet?


Having never used SQLAlchemy, and rarely python, what are the benefits of
SQLAlchemy? My only experience with ORM was hibernate and it was a pretty
bad experience, the whole time left thinking Why use this over SQL? - the
only answer I came up with was not having to write the table/column to
object/property mapping stuff, which alone was not worth the concision lost
to not writing my own queries. Also ... that whole lazy loading situation is
a real PITA in my experience.

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en