data access object in python

12,009

If you're looking for an ORM, then SQLAlchemy and Storm are popular choices.

Share:
12,009
Moayyad Yaghi
Author by

Moayyad Yaghi

Updated on June 04, 2022

Comments

  • Moayyad Yaghi
    Moayyad Yaghi almost 2 years

    6 months ago , i was asked to make a database access for our project that has around 30 tables ,( using the Data transfer object pattern ) . we were using Microsoft's sql server back then. so i had to write a script that automatically generates the DAO's and DTO's.( automatically build classes, name them appropriately according tables , and then write the query inside the functions ) , save it as .py and put it in the right folder --- it's only text processing anyway ---.

    now the management decided to change the databases to mysql. and i am wondering , is there any already made DAO generators for mysql in python ?? because i seen something like this in java. this will save me lot of work . Please inform me if anything was unclear

    i use python 2.6 , linux fedora (i have windows machine too ).

    thanks in advance

    Moayyad Yaghi

    • Moayyad Yaghi
      Moayyad Yaghi over 13 years
      in case my question was not clear , my question is: is there any DAO or DTO generators for mysql in python ?
    • user1066101
      user1066101 over 13 years
      Don't comment on your own question. If you think it wasn't clear, update the question to be clear. No one reads the comments.