zoukankan      html  css  js  c++  java
  • tornada-数据库

    数据库

    • torndb安装
    • 连接初始化
    • 执行语句
      • execute
      • execute_rowcount
    • 查询语句
      • get
      • query

    与Django框架相比,Tornado没有自带ORM,对于数据库需要自己去适配。我们使用MySQL数据库。

    在Tornado3.0版本以前提供tornado.database模块用来操作MySQL数据库,而从3.0版本开始,此模块就被独立出来,作为torndb包单独提供。torndb只是对MySQLdb的简单封装,不支持Python 3。

    1.torndb安装

    pip install torndb

    2.连接初始化

    我们需要在应用启动时创建一个数据库连接实例,供各个RequestHandler使用。我们可以在构造Application的时候创建一个数据库实例并作为其属性,而RequestHandler可以通过self.application获取其属性,进而操作数据库实例。

    # 放在application.py 最下面
       super(Application, self).__init__(handlers, **settings)
            # 创建一个全局mysql连接实例供handler使用
            self.db = torndb.Connection(
                host="127.0.0.1",
                database="igeek",
                user="root",
                password="mysql"
            )
    
    

    使用数据库

    新建数据库与表:

    # 
    create database igeek default character set utf8; use igeek; create table houses ( id bigint(
    20) unsigned not null auto_increment comment '房屋编号', title varchar(64) not null default '' comment '标题', position varchar(32) not null default '' comment '位置', price int not null default 0, score int not null default 5, comments int not null default 0, primary key(id) )ENGINE=InnoDB default charset=utf8 comment='房屋信息表';



















  • 相关阅读:
    一个项目需要提交哪了些文档?
    aspose.cells
    国内人才申领《上海市居住证》审核试行办法
    SPRING.NET 1.3.2 学习1组件功能说明
    Nhibernate中实现多数据库支持
    Asp.net Mvc 实用技巧
    windwos server 2008 r2安装,一些最基本设置需要注意的地方
    配置SQL Server的身份验证方式
    MindManager 2012 简介(安装)
    Git 管理篇章
  • 原文地址:https://www.cnblogs.com/Mint-diary/p/9919379.html
Copyright © 2011-2022 走看看