真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

三分鐘搞懂python_pymysql基本操作

下面講講關(guān)于python_pyMySQL基本操作,文字的奧妙在于貼近主題相關(guān)。所以,閑話就不談了,我們直接看下文吧,相信看完python_pymysql基本操作這篇文章你一定會(huì)有所受益。

目前創(chuàng)新互聯(lián)已為成百上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬空間、網(wǎng)站托管、服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、睢陽(yáng)網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

import pymysql.cursors

# Connect to the database

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

                             user='root',

                             password='password',

                             db='mysql_test',

                             charset='utf8mb4',

                             cursorclass=pymysql.cursors.DictCursor)

try:

    with connection.cursor() as cursor:

        # Create a new record

        sql = "INSERT INTO `users` (`email`, `password`) VALUES (%s, %s)"

        cursor.execute(sql, ('test@python.org', 'test123!'))

    # connection is not autocommit by default. So you must commit to save

    # your changes.

    connection.commit()

    with connection.cursor() as cursor:

        # Read a single record

        sql = "SELECT `id`, `email`,`password` FROM `users` WHERE `email`=%s"

        cursor.execute(sql, ('test@python.org',))

        result = cursor.fetchone()

        print(result)

finally:

    connection.close()

https://pypi.org/project/PyMySQL/#documentation

對(duì)于以上python_pymysql基本操作相關(guān)內(nèi)容,大家還有什么不明白的地方嗎?或者想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。


網(wǎng)站標(biāo)題:三分鐘搞懂python_pymysql基本操作
文章位置:http://weahome.cn/article/picsdg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部