zoukankan      html  css  js  c++  java
  • python---连接MySQL第一页

    前言:python如果想要连接到MySQL要安装上相关的驱动才下;好在驱动程序在mysql的官网可以下载的到。

             以下是我自己保存的一个conetos7版本

             http://yunpan.cn/cLACS7VurfaE4  访问密码 2e26

    例子:

    #!/usr/bin/python
    #!coding:utf-8
    
    import mysql.connector
    from mysql.connector import errorcode
    
    def create_db(host='127.0.0.1',port=3306,user='admin',password='131417',database='studio'):
        config={
        'host':host,
        'port':port,
        'user':user,
        'password':password,
        'database':database
        }
        try:
            conn=mysql.connector.connect(**config)
        except mysql.connector.Error,err:
            if err.errno == errorcode.ER_ACCESS_DENIED_ERROR:
                print 'ACCESS_DENIED_ERROR something is worng your name or password'
            elif err.errno == errorcode.ER_BAD_DB_ERROR:
                print 'database is not exists'
            else:
                print err
        else:
            print 'linked to database...'
            cursor=conn.cursor()
            create_db='create database if not exists tempdb character set utf8;'
            cursor.execute(create_db)
            print 'database been created ...'
            conn.close()
    
    if __name__=="__main__":
        create_db()
  • 相关阅读:
    Python 集合
    Python 文字列
    JUNIT5(maven配置)
    Javascript严格模式
    移动互联测试
    Python的基础知识
    Linux系统下发件oa环境
    禅道的使用
    Linux系统的安装过程
    Oracle基础知识
  • 原文地址:https://www.cnblogs.com/JiangLe/p/4938262.html
Copyright © 2011-2022 走看看