Object-Relational Mapping API for Python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Aquarius

    #1

    Object-Relational Mapping API for Python

    I explored Java's Hibernate a bit and I was intrigued by how you can
    map entity objects to database tables, preserving all the relations and
    constraits. I am interested if there is something like this for Python
    - I noticed some APIs in the "Cheeseshop ", but most of them were alpha,
    better, or seemed to be forsaken a long time ago. Can you recommend me
    anything?

  • Lawrence Oluyede

    #2
    Re: Object-Relational Mapping API for Python

    sIl 2005-11-01, Aquarius <stefan.kanev@g mail.com> ha scritto:[color=blue]
    > I explored Java's Hibernate a bit and I was intrigued by how you can
    > map entity objects to database tables, preserving all the relations and
    > constraits. I am interested if there is something like this for Python
    > - I noticed some APIs in the "Cheeseshop ", but most of them were alpha,
    > better, or seemed to be forsaken a long time ago. Can you recommend me
    > anything?[/color]



    --
    Lawrence

    Comment

    • Dave Cook

      #3
      Re: Object-Relational Mapping API for Python

      On 2005-11-01, Aquarius <stefan.kanev@g mail.com> wrote:
      [color=blue]
      > I explored Java's Hibernate a bit and I was intrigued by how you can
      > map entity objects to database tables, preserving all the relations and
      > constraits. I am interested if there is something like this for Python
      > - I noticed some APIs in the "Cheeseshop ", but most of them were alpha,
      > better, or seemed to be forsaken a long time ago. Can you recommend me
      > anything?[/color]

      SQLObject is quite mature and actively maintained. I have to say that I
      don't care for ORMs much (or at least many of the Python ones); you usually
      lose a lot of the power of relational databases.

      Dave Cook

      Comment

      • Kent Johnson

        #4
        Re: Object-Relational Mapping API for Python

        Aquarius wrote:[color=blue]
        > I explored Java's Hibernate a bit and I was intrigued by how you can
        > map entity objects to database tables, preserving all the relations and
        > constraits. I am interested if there is something like this for Python
        > - I noticed some APIs in the "Cheeseshop ", but most of them were alpha,
        > better, or seemed to be forsaken a long time ago. Can you recommend me
        > anything?
        >[/color]

        SQLObject, PyDO, Durus and Django's database API.

        Kent

        Comment

        Working...