SQLAlchemy告诉我“AttributeError:type object'User'没有属性'columns'”

时间:2013-08-12 08:18:13

标签: python flask sqlalchemy attributes

我正在使用python + Flask + SQLAlchemy构建一个小项目,我制作了一个模型文件:

################# start of models.py #####################
from sqlalchemy import Column, Integer, String, Sequence, Date, DateTime, ForeignKey
from sqlalchemy.orm import relationship, backref
from dk.database import Base
import datetime

class User(Base):
    __tablename__ = 'users'
    id = Column(Integer, Sequence('seq_user_id'), primary_key=True)
    name = Column(String(50), unique=True, index = True, nullable = False)
    email = Column(String(120), unique=True, index = True, nullable = False)
    password = Column(String(128), nullable = False)

    def __init__(self, name, email, password):
        self.name = name
        self.email = email
        self.password = password

    def __repr__(self):
        return '<User %r>' % (self.name)

class Session(Base):
    __tablename__ = 'session'
    id = Column(String(128), primary_key = True, nullable = False)
    user_name = Column(String(30), nullable = False)
    user_id = Column(Integer, ForeignKey('users.id'))
    user = relationship('User', backref=backref('session', lazy='dynamic'))

    def __repr__(self):
        return '<Session %r>' % (self.id)
################# end of models.py #####################

我在下面构建了一个初始文件:

################# start of __init__.py #################
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy

app = Flask(__name__)
app.config.from_object('config') #load database config information
db = SQLAlchemy(app)
################# end of __init__.py #################

当我在脚本中运行“init_db()”时,为数据库构建的表成功。 但是当我想看到SQL脚本然后我在脚本中运行“print CreateTable(User)”时,系统会显示以下错误:

  File "/home/jacky/flaskcode/venv/lib/python2.6/site-packages/sqlalchemy/schema.py", line 3361, in __init__
    for column in element.columns
AttributeError: type object 'User' has no attribute 'columns'

我不知道如何解决这个问题!

1 个答案:

答案 0 :(得分:3)

您需要为Table传递 CreateTable() 对象:

CreateTable(User.__table__)

但如果您想查看SQLAlchemy发出的SQL语句,最好通过设置echo=True when creating the connection来启用回显。

Flask SQLAlchemy集成层支持SQLALCHEMY_ECHO option来设置该标志。