美文网首页
数据库链接

数据库链接

作者: Destiny_0ea2 | 来源:发表于2018-11-04 18:06 被阅读0次

    import pymysql

    db=pymysql.connect(host='localhost',

                              user='root',

                              password='Shiyue%120',

                              db='test',

                              port=3306,

                              charset='utf8')

    #db= pymysql.connect(host="localhost",user="root",

    # password="Shiyue%120",db="test",port=3307)

    cursor = db.cursor()

    try:

            sql='select name from test1 where id = 2'

            cursor.execute(sql)

            result = cursor.fetchall()

            for row in result:

                print(row[0])

                print(row[1])

                print(row[2])

    except:

        print("er")     

    相关文章

      网友评论

          本文标题:数据库链接

          本文链接:https://www.haomeiwen.com/subject/brhdxqtx.html