Python ORM SQLAlchemy和Django用法

时间:2011-05-03 18:18:46

标签: python django sqlalchemy

我正在开发基于Flex的仪表板,我正在考虑使用SQLAlchemy或Django与数据库进行交互。

我对这两个框架都不熟悉。我知道Django可以使用 syncdb 命令创建数据库,SQLAlchemy可以使用* metadata.create_all(engine)*语句执行相同的操作。如何将这些框架与现有数据库一起使用?

2 个答案:

答案 0 :(得分:0)

对于Django,请查看Integrating Django with a legacy database。我没有SQLAlchemy的经验,但我认为他们有类似的东西。

答案 1 :(得分:0)

为mapper函数定义一个类 e.g

engine = create_engine("mysql+mysqldb://root:@localhost/testdb",echo = True)
#testbd is ur database#use password->> "password"@localhost

metadata = MetaData(engine)
session = create_session()

person_table = Table('person', metadata,
                     Column('id', Integer, primary_key = True),
                     Column('name', String(40)),
                     Column('age', Integer),
                     Column('about', String(100))
                     )

metadata.create_all(engine)

class Person(object):
    def __init__(self,name,age,about):
        self.name = name
        self.age = age
        self.about = about
    def __repr__(self):
        return self.name, self.age, self.about

mapper(Person, person_table)

#for insert do the below
a_person = Person('Name','Age','About')
session.add(a_person)
session.flush()