Created
June 24, 2015 10:37
-
-
Save lazybios/68f1f9ef12515dd474f8 to your computer and use it in GitHub Desktop.
sqlite demo From http://www.pythoncentral.io/introductory-tutorial-python-sqlalchemy/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
from sqlalchemy import Column, ForeignKey, Integer, String | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.orm import relationship | |
from sqlalchemy import create_engine | |
Base = declarative_base() | |
class Person(Base): | |
__tablename__ = 'person' | |
# Here we define columns for the table person | |
# Notice that each column is also a normal Python instance attribute. | |
id = Column(Integer, primary_key=True) | |
name = Column(String(250), nullable=False) | |
class Address(Base): | |
__tablename__ = 'address' | |
# Here we define columns for the table address. | |
# Notice that each column is also a normal Python instance attribute. | |
id = Column(Integer, primary_key=True) | |
street_name = Column(String(250)) | |
street_number = Column(String(250)) | |
post_code = Column(String(250), nullable=False) | |
person_id = Column(Integer, ForeignKey('person.id')) | |
person = relationship(Person) | |
# Create an engine that stores data in the local directory's | |
# sqlalchemy_example.db file. | |
engine = create_engine('sqlite:///sqlalchemy_example.db') | |
# Create all tables in the engine. This is equivalent to "Create Table" | |
# statements in raw SQL. | |
Base.metadata.create_all(engine) |
Author
lazybios
commented
Jun 24, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment