微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

简单的连接MySQL与Python的Bottle框架的方法

Python关于MysqL的连接插件众多,Bottle下也有人专门开发的插件:bottle-MysqL具体使用方法见官方,总共感觉其用法限制太多,其使用起来不方便,最适合的当然是,MysqL官网给Python提供的通用官方驱动,用起来很顺手:mysql-connector  具体操作如下:
 

# -*- coding: utf-8 -*-
#!/usr/bin/python
# filename: login_admin.py
# codedtime: 2014-9-7 11:26:11

import bottle
import MysqL.connector  # 导入MysqL数据库连接器

def check_userinfo():
  a_list = []  # 创建一个空列表
  username = bottle.request.GET.get('loginname','').strip() # 用户名
  password = bottle.request.GET.get('password','').strip()  # 密码
  if username is not None or password is not None:
    try:
      # 连接数据库 
      conn = MysqL.connector.connect(user='root',password='123456',database='myblog')   
      cursor = conn.cursor() # 创建数据游标
      
      # 执行查询
      query = ("SELECT username,password FROM mb_users "
           "WHERE username=%s and password=%s")
      cursor.execute(query,(username,password))

      a_list = cursor.fetchall() # fetchone获取一个元组
      #count = int(cursor.rowcount) # 获取元组个数 
      return a_list

    except MysqL.connector.Error as err:
      print("Something went wrong: {}".format(err))
      exit()
      
    finally:
      conn.commit() # 提交修改
      cursor.close() # 关闭数据库
      conn.close()
  else:
    return a_list

def login_admin():
  if bottle.request.GET.get('bs-submit','').strip(): #点击登录按钮
    a_list = check_userinfo()
    if a_list:
      a_name = a_list[0][0] # 获得用户名
      return bottle.template('templates/index_user.tpl',username = a_name)
    else:
      return bottle.template('templates/login_admin.tpl',action='/login_admin',error_info='请输入正确的用户名或密码!')
  else:
    return bottle.template('templates/login_admin.tpl',action='',error_info=' ')

    
以上是MysqL在Botlle中的简单用法

顺便提一下:安装和管理MysqL,建议安装使用XAMPP,XAMPP集成了Apache, MysqLPHP、Tomcat等多种工具,一次性解决安装,不用自己繁琐的一个个安装和配置,而且管理也很方便。XAMPP安装的MysqL用户是:root  密码为空。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐