Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
64 views
in Technique[技术] by (71.8m points)

python - SQLAlchemy - what is declarative_base

I am learning sqlalchemy.
Here is my initial code :

user.py

from sqlalchemy import Column, Integer, Sequence, String
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()

class User(Base):
   __tablename__ = 'users'
   id = Column(Integer,Sequence('user_seq'), primary_key=True)
   username = Column(String(50), unique=True)
   fullname = Column(String(150))
   password = Column(String(50))
   def __init__(self, name, fullname, password):
      self.name = name
      self.fullname = fullname
      self.password = password

main.py

from sqlalchemy.orm import sessionmaker
from sqlalchemy import create_engine
from user import User
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()

if __name__ == '__main__':
   engine = create_engine('mysql://root:[email protected]:3306/test', echo=True)
   Base.metadata.create_all(engine, checkfirst=True)
   Session = sessionmaker(bind=engine)
   session = Session()
   ed_user = User('ed', 'Ed Jones', 'edspassword')
   session.add(ed_user)
   session.commit()

When I run main.py, it won't create tables automatically and gives me an exception on session.commit().

Also, when I move line Base = declarative_base() to any different module and use the same Base variable in main.py and in user.py - it creates the table.

My question: "What is declarative_base" ?

question from:https://stackoverflow.com/questions/15175339/sqlalchemy-what-is-declarative-base

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

declarative_base() is a factory function that constructs a base class for declarative class definitions (which is assigned to the Base variable in your example). The one you created in user.py is associated with the User model, while the other one (in main.py) is a different class and doesn't know anything about your models, that's why the Base.metadata.create_all() call didn't create the table. You need to import Base from user.py

from user import User, Base

instead of creating a new Base class in main.py.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

57.0k users

...