zoukankan      html  css  js  c++  java
  • 20180202之engine,URL,base,session

    1. SQLAlchemy版本信息检查
    2. import sqlalchemy
      print(sqlalchemy.__version__)
    3. 数据库链接
      1. 创建engine
      2. from sqlalchemy import create_engine
        engin=create_engine("dialect+driver://username:password@host:port/database")
      3. 数据库URL支持
        1. Postgresql:
        2. # default
          engine = create_engine('postgresql://scott:tiger@localhost/mydatabase')
          # psycopg2
          engine = create_engine('postgresql+psycopg2://scott:tiger@localhost/mydatabase')
          # pg8000
          engine = create_engine('postgresql+pg8000://scott:tiger@localhost/mydatabase')
        3. MySQL:
        4. # default
          engine = create_engine('mysql://scott:tiger@localhost/foo')
          # mysql-python
          engine = create_engine('mysql+mysqldb://scott:tiger@localhost/foo')
          # MySQL-connector-python
          engine = create_engine('mysql+mysqlconnector://scott:tiger@localhost/foo')
          # OurSQL
          engine = create_engine('mysql+oursql://scott:tiger@localhost/foo')
        5. Oracl:
          engine = create_engine('oracle://scott:tiger@127.0.0.1:1521/sidname')
          engine = create_engine('oracle+cx_oracle://scott:tiger@tnsname')
        6. Microsoft SQL Server:
          # pyodbc
          engine = create_engine('mssql+pyodbc://scott:tiger@mydsn')
          # pymssql
          engine = create_engine('mssql+pymssql://scott:tiger@hostname:port/dbname')
        7. SQLite:
          #Unix/Mac - 4 initial slashes in total
          engine = create_engine('sqlite:////absolute/path/to/foo.db')
          #Windows
          engine = create_engine('sqlite:///C:\path\to\foo.db')
          #Windows alternative using raw string
          engine = create_engine(r'sqlite:///C:path	ofoo.db')
          #Memony SQLite database
          engine = create_engine('sqlite://')
    4. Declarative方法对象
      1. 基类创建
      2. from sqlalchemy.ext.declarative import declarative_base
        Base = declarative_base()
      3. 基于基类创建映射类
      4. from sqlalchemy import Column,Integer,String
        class User(Base):
            __tablename__="user"
            id=Column(Integer,primary_key=True)
            name=Column(String)
      5. 通过映射类创建实例
      6. user = User(name='Huangy',fullname='Huangya', password='123.com')
      7. 将映射类同步到数据库
        #创建数据库
        Base.metadata.create_all(engine)
    5. Session,用于ORM与数据库的链接,创建session的时候需绑定数据库engine
    6. from sqlalchemy.orm import sessionmaker
      Session=sessionmaker(bind=engine)
      1. 需要session时,再初始化
      2. #当需要和数据库链接的时候,再初始化一个session对象
        session=Session()
      3. 虽然以上操作session和engine已经关联,但是无任何链接,当使用的时候,再从engine维护的链接池中检索是否存在链接,若存在则保持,直到close或更改。
  • 相关阅读:
    YARN架构设计详解
    HDFS文件上传
    HDFS Namenode启动过程
    (转)计算机原理学习(1)-- 冯诺依曼体系和CPU工作原理
    (转)python之from_bytes、to_bytes
    (转)Python3入门之线程threading常用方法
    (转)Python3.5 queue模块详解
    (转) argparse — 解析命令参数和选项
    (转)Python3之pickle模块
    (转)linux用户态和内核态理解
  • 原文地址:https://www.cnblogs.com/yaya625202/p/8406522.html
Copyright © 2011-2022 走看看