Python SQLAlchemy:AttributeError:'Column'对象和'Comparator'对象都没有属性'schema'

Posted

技术标签:

【中文标题】Python SQLAlchemy:AttributeError:\'Column\'对象和\'Comparator\'对象都没有属性\'schema\'【英文标题】:Python SQLAlchemy: AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema'Python SQLAlchemy:AttributeError:'Column'对象和'Comparator'对象都没有属性'schema' 【发布时间】:2015-05-29 22:50:52 【问题描述】:

我尝试在我的项目中创建一个新数据库,但是当我运行脚本时出现此错误,我有另一个使用类似定义的项目,它以前工作过,但现在它得到相同的错误。 我使用的是 Python 2.7.8,SQLAlchemy 模块的版本是 0.9.8。 顺便说一句,一个项目使用了 Flask-SQLAlchemy,效果很好。 我很迷惑。 回溯信息如下:

Traceback (most recent call last):
  File "D:/Projects/OO-IM/db_create.py", line 4, in <module>
    from models import Base
  File "D:\Projects\OO-IM\models.py", line 15, in <module>
    Column('followed_id', Integer(), ForeignKey('user.id'))
  File "C:\Python27\lib\site-packages\sqlalchemy\sql\schema.py", line 369, in __new__
    schema = metadata.schema
  File "C:\Python27\lib\site-packages\sqlalchemy\sql\elements.py", line 662, in __getattr__
    key)
AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema'


from sqlalchemy import create_engine, Column, String, Integer, Text, DateTime, Boolean, ForeignKey, Table
from sqlalchemy.orm import sessionmaker, relationship, backref
from sqlalchemy.ext.declarative import declarative_base

SQLALCHEMY_DATABASE_URI = "mysql://root:mysqladmin@localhost:3306/oo_im?charset=utf8"

Base = declarative_base()

# TODO:AttributeError: Neither 'Column' object nor 'Comparator' object has an attribute 'schema'
friendships = Table('friendships',
                    Column('follower_id', Integer(), ForeignKey('user.id')),
                    Column('followed_id', Integer(), ForeignKey('user.id'))
)


class User(Base):
    __tablename__ = 'user'
    id = Column(Integer(), primary_key=True)
    account = Column(String(32), unique=True, nullable=False)
    password = Column(String(32), nullable=False)
    followed = relationship("User",
                            secondary=friendships,
                            primaryjoin=(friendships.c.follower_id == id),
                            secondaryjoin=(friendships.c.followed_id == id),
                            backref=backref("followers", lazy="dynamic"),
                            lazy="dynamic")

    def __init__(self, account, password, followed=None):
        self.account = account
        self.password = password

        if followed:
            for user in followed:
                self.follow(user)

    def follow(self, user):
        if not self.is_following(user):
            self.followed.append(user)
            return self

    def unfollow(self, user):
        if self.is_following(user):
            self.followed.remove(user)
            return self

    def is_following(self, user):
        return self.followed.filter(friendships.c.followed_id == user.id).count() > 0


class ChatLog(Base):
    __tablename__ = 'chatlog'
    id = Column(Integer(), primary_key=True)
    sender_id = Column(Integer(), ForeignKey('user.id'), nullable=False)
    receiver_id = Column(Integer(), ForeignKey('user.id'), nullable=False)
    send_time = Column(DateTime(), nullable=False)
    received = Column(Boolean(), default=False)
    content = Column(Text(), nullable=False)


engine = create_engine(SQLALCHEMY_DATABASE_URI, convert_unicode=True)
DBSession = sessionmaker(bind=engine)

【问题讨论】:

当你说这个错误时,你指的是你的“TODO:”评论中的错误吗? 只是一个注释,错误在下一行提出。 在您的TODO: 下方,对Table(...) 的调用必须有一个MetaData 实例作为第二个参数,而您缺少该实例。 你能告诉我们错误吗?这很重要,因为您正在寻求调试帮助。对于调试帮助,通常这里预期的是代码的最小相关部分、任何错误消息以及实际行为与预期行为 - 任何人都需要查看以了解和开始诊断问题的所有内容。 对不起,我添加了回溯信息, 【参考方案1】:

表定义应该是:

friendships = Table('friendships',
                    Base.metadata,
                    Column('follower_id', Integer(), ForeignKey('user.id')),
                    Column('followed_id', Integer(), ForeignKey('user.id'))
)

使用声明式语法定义表时,元数据通过类声明从Base继承,即

Base = declarative_base()

class ChatLog(Base)

但是,当使用旧的 Table 语法定义表时,必须明确指定元数据。

【讨论】:

我遇到了这个错误,因为我没有包含我声明的 Base 或元数据。感谢您的回答。【参考方案2】:

我遇到了同样的错误,因为我用小写的 c 拼写了 Column。应该是Column

【讨论】:

我和你有同样的错误,我花了很多时间来解决它。非常感谢。 对我来说也是如此!我永远不会怀疑这一点。在另一堂课中,我使用了小写的 c 并且似乎可以正常工作。很奇怪。 哇,调试它的 PITA 真是太棒了,引发的错误完全没有帮助【参考方案3】:

我遇到了类似的问题。准确地说,我面临的错误是: AttributeError: Neither 'ColumnClause' object nor 'Comparator' object has an attribute '_set_parent_with_dispatch'

经过一番挣扎,我发现这是一个拼写错误。我在 sn-p 第 6 行下方将 sa.Column 拼写为 sa.column

from alembic import op
import sqlalchemy as sa

def something():
    op.add_column('table_name',
        sa.Column('column_name', sa.Text(), nullable=True) # Correct usage
    )

【讨论】:

以上是关于Python SQLAlchemy:AttributeError:'Column'对象和'Comparator'对象都没有属性'schema'的主要内容,如果未能解决你的问题,请参考以下文章

Python flask-sqlalchemy初级解析

Python SQLAlchemy入门教程

python sqlalchemy

python flask orm sqlalchemy 实例

python flask orm sqlalchemy 实例

Python—sqlalchemy