python通过elixir包操作mysql数据库实例代码


Posted in Python onJanuary 31, 2018

本文研究的主要是python通过elixir包操作mysql数据库的相关实例,具体如下。

python操作数据库有很多方法,下面介绍elixir来操作数据库。elixir是对sqlalchemy lib的一个封装,classes和tables是一一对应的,能够一步定义classes,tables和mappers,支持定义多个primary key。

定义model.py

from elixir import sqlalchemy 
from elixir import * 
 
engine =sqlalchemy.create_engine('mysql://root:root@localhost/') #the first root is the user, and the sencond root is the password 
#engine.execute("DROP DATABASE IF EXISTS elixir") 
engine.execute("CREATE DATABASE IF NOT EXISTS elixir") 
 
 
metadata.bind='mysql://root:root@localhost:3306/elixir' 
#metadata.bind.echo =True 
class Movie(Entity): 
  using_options(tablename='movies') 
 
  title = Field(Unicode(30),primary_key = True) 
  year = Field(Integer, primary_key = True) 
  description = Field(UnicodeText) 
  director = ManyToOne('Director') 
  genres = ManyToMany('Genre') 
  actor = ManyToMany('Actor') 
 
  def __repr__(self): 
    return '<Move "%s" (%d)>' % (self.title, self.year) 
 
class Person(Entity): 
  using_options(inheritance='multi') 
  using_options(tablename='person') 
 
  name = Field(Unicode(60)) 
 
  def __repr__(self): 
    return '<Person "%s">' % self.name 
 
 
class Director(Person): 
  using_options(inheritance='multi') 
  using_options(tablename='director') 
 
  movies = OneToMany('Movie') 
 
  def __repr__(self): 
    return '<Director "%s">' % self.name 
 
class Genre(Person): 
  using_options(inheritance='multi') 
  using_options(tablename='genre') 
 
  movies = ManyToMany('Movie') 
 
  def __repr__(self): 
    return '<Genre "%s">' % self.name 
 
class Actor(Person): 
  using_options(inheritance='multi') 
  using_options(tablename='actor') 
 
  movies = ManyToMany('Movie') 
 
  def __repr__(self): 
    return '<Actor "%s">' % self.name

model_test.py

from model import * 
 
# setup_all(True) is equal to the following two staps: 
setup_all() # create sqlalchemy table object as mapper object for the class 
create_all() # take all table objcts and create real tables by issuing SQL statements on the databse. 
 
Actor1 = Actor(name=u"lvliang") 
scifi = Genre(name = u"Science-Fiction") 
rscott = Director(name = u"Ridley Scott") 
glucas = Director(name = u"George Lucas") 
alien = Movie(title = u"Alien", year = 1979, director=rscott, genres=[scifi, Genre(name=u"Horror")], actor = [Actor1]) 
brunner = Movie(title = u"Blade Runner", year = 1982, director = rscott, genres=[scifi]) 
swars = Movie(title = u"Star Wars", year = 1977, director = glucas, genres=[scifi]) 
session.commit() 
 
 
m1 = Movie.query.filter_by(title=u"Alien").one() 
m2 = Movie.query.filter(Movie.year>1980).all() 
m3 = Movie.query.filter(Movie.director.has(name = u"Ridley Scott")).all() 
m4 = Movie.query.filter(Movie.director.has(Director.name.endswith(u"Scott"))).all() 
m5 = Movie.query.filter(Movie.genres.any(name = u"Horror")).all() 
 
print m1 
print m2 
print m3 
print m4 
print m5 
 
d = Director.get_by(name = u"Ridley Scott") # Class.get_by(xxx) is a shortcut for Class.query.filter_by(xxx).first 
q = Movie.query.filter_by(director = d) #get all movies directed by director d 
m = q.filter_by(year = 1979).all() 
print "Movie direct by %s in year 1979 are " %(d.name) 
print m 
 
movies = q.order_by(sqlalchemy.desc(Movie.year)).all() 
print movies 
fro m in movies: 
  m.delete() 
session.commit()

执行model.py,结果为:

python通过elixir包操作mysql数据库实例代码

查看数据库,结果为:

python通过elixir包操作mysql数据库实例代码

总结

以上就是本文关于python通过elixir包操作mysql数据库实例代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
Python基于Tkinter实现的记事本实例
Jun 17 Python
详解MySQL数据类型int(M)中M的含义
Nov 20 Python
python引入导入自定义模块和外部文件的实例
Jul 24 Python
基于Django模板中的数字自增(详解)
Sep 05 Python
基于python实现聊天室程序
Jul 27 Python
一百多行python代码实现抢票助手
Sep 25 Python
Python多线程threading模块用法实例分析
May 22 Python
PyTorch中反卷积的用法详解
Dec 30 Python
使用python turtle画高达
Jan 19 Python
Python MySQLdb 执行sql语句时的参数传递方式
Mar 04 Python
Numpy(Pandas)删除全为零的列的方法
Sep 11 Python
Python的轻量级ORM框架peewee使用教程
Feb 05 Python
Django视图和URL配置详解
Jan 31 #Python
Python编程求质数实例代码
Jan 31 #Python
Python及Django框架生成二维码的方法分析
Jan 31 #Python
Python进阶之尾递归的用法实例
Jan 31 #Python
简单的python协同过滤程序实例代码
Jan 31 #Python
Python进阶之递归函数的用法及其示例
Jan 31 #Python
Python tkinter事件高级用法实例
Jan 31 #Python
You might like
很温暖很温暖的Lester Young
2021/03/03 冲泡冲煮
实用函数9
2007/11/08 PHP
PHP 日志缩略名的创建函数代码
2010/05/26 PHP
php调用方法mssql_fetch_row、mssql_fetch_array、mssql_fetch_assoc和mssql_fetch_objcect读取数据的区别
2012/08/08 PHP
php数组添加与删除单元的常用函数实例分析
2015/02/16 PHP
Yii2增加验证码步骤详解
2016/04/25 PHP
js控制表单操作的常用代码小结
2013/08/15 Javascript
随鼠标上下滚动的jquery代码
2013/12/05 Javascript
JavaScript的事件代理和委托实例分析
2015/03/25 Javascript
跟我学习javascript的异步脚本加载
2015/11/20 Javascript
angular-cli修改端口号【angular2】
2017/04/19 Javascript
easyui简介_动力节点Java学院整理
2017/07/14 Javascript
element-ui中select组件绑定值改变,触发change事件方法
2018/08/24 Javascript
vue搜索和vue模糊搜索代码实例
2019/05/07 Javascript
javascript实现京东登录显示隐藏密码
2020/08/02 Javascript
[24:42]VP vs TNC Supermajor小组赛B组 BO3 第三场 6.2
2018/06/03 DOTA
Python strip lstrip rstrip使用方法
2008/09/06 Python
用Python实现通过哈希算法检测图片重复的教程
2015/04/02 Python
python实现Floyd算法
2018/01/03 Python
Python实现base64编码的图片保存到本地功能示例
2018/06/22 Python
python中计算一个列表中连续相同的元素个数方法
2018/06/29 Python
python中的decorator的作用详解
2018/07/26 Python
一百行python代码将图片转成字符画
2021/02/19 Python
快速解决Django关闭Debug模式无法加载media图片与static静态文件
2020/04/07 Python
基于Python绘制美观动态圆环图、饼图
2020/06/03 Python
python 使用csv模块读写csv格式文件的示例
2020/12/02 Python
医学专业大学生求职的自我评价
2013/11/27 职场文书
春游踏青活动方案
2014/08/14 职场文书
颂军魂爱军营演讲稿
2014/09/13 职场文书
银行竞聘报告范文
2014/11/06 职场文书
酒店财务总监岗位职责
2015/04/03 职场文书
讲座开场白台词和结束语
2015/05/29 职场文书
民主生活会主持词
2015/07/01 职场文书
学习心理学心得体会
2016/01/22 职场文书
2016年学校招生广告语
2016/01/28 职场文书
解析redis hash应用场景和常用命令
2021/08/04 Redis