python 使用 pymysql 數(shù)據(jù)庫操作基本使用

python 使用 pymysql 操作mysql 初體驗.

import pymysql


def create_table(bg_data_name, table_name, sql, drop):
    """ 創(chuàng)建數(shù)據(jù)庫表

    :param bg_data_name: str: 連接數(shù)據(jù)庫的名稱
    :param table_name:   str: 表名
    :param sql:          str: 創(chuàng)建數(shù)據(jù)庫語句
    :param drop:         bool: 如果表存在磕瓷,是否是刪除舊的表,重新創(chuàng)建
    :return:
    """
    print("創(chuàng)建表的語句 = ", sql)
    # 打開數(shù)據(jù)庫連接
    db = pymysql.connect("127.0.0.1", "root", "chunyan", bg_data_name)

    # 使用 cursor() 方法創(chuàng)建一個游標(biāo)對象 cursor
    cursor = db.cursor()

    # 判斷數(shù)據(jù)庫中是否存在表
    exist = cursor.execute("show tables like '%s'" % table_name)
    print("如果表存在則刪除 exist = ", exist)

    if exist:
        print("表已存在")
        if drop:
            print("刪除表蒲犬,重新創(chuàng)建")
            # 使用 execute() 方法執(zhí)行 SQL肛搬,如果表存在則刪除
            cursor.execute("DROP TABLE IF EXISTS %s" % table_name)
            print("創(chuàng)建表")
            cursor.execute(sql)
            db.commit()
    else:
        print("創(chuàng)建表")
        cursor.execute(sql)

    print("關(guān)閉數(shù)據(jù)庫連接")
    cursor.close()
    # 關(guān)閉數(shù)據(jù)庫連接
    db.close()


def del_table(bg_data_name, table_name):
    """ 刪除數(shù)據(jù)庫中的表

    :param bg_data_name:    str: 連接數(shù)據(jù)庫的名稱
    :param table_name:      str: 表名
    :return:
    """
    # 打開數(shù)據(jù)庫連接
    db = pymysql.connect("127.0.0.1", "root", "chunyan", bg_data_name)

    # 使用 cursor() 方法創(chuàng)建一個游標(biāo)對象 cursor
    cursor = db.cursor()

    # 判斷數(shù)據(jù)庫中是否存在表
    exist = cursor.execute("show tables like '%s'" % table_name)
    print("判斷數(shù)據(jù)庫中是否存在表 exist = ", exist)

    if exist:
        print("表存在 刪除表")
        # 使用 execute() 方法執(zhí)行 SQL,如果表存在則刪除
        cursor.execute("DROP TABLE IF EXISTS %s" % table_name)
    else:
        print("數(shù)據(jù)庫中沒有該表")

    print("關(guān)閉數(shù)據(jù)庫連接")
    cursor.close()
    # 關(guān)閉數(shù)據(jù)庫連接
    db.close()


def add_table_row(bg_data_name, table_name, field_name, row):
    add_table_rows(bg_data_name, table_name, field_name, [row])


def add_table_rows(bg_data_name, table_name, field_name, rows):
    """ 向數(shù)據(jù)庫添加數(shù)據(jù)

    :param bg_data_name: str: 連接數(shù)據(jù)庫的名稱
    :param table_name:   str: 表名
    :param field_name:   str: 字段名 多個逗號隔開
    :param rows:         list(tuple): 添加的數(shù)據(jù)
    :return:
    """
    # 打開數(shù)據(jù)庫連接
    db = pymysql.connect("127.0.0.1", "root", "chunyan", bg_data_name)

    # 使用 cursor() 方法創(chuàng)建一個游標(biāo)對象 cursor
    cursor = db.cursor()

    # 判斷數(shù)據(jù)庫中是否存在表
    exist = cursor.execute("show tables like '%s'" % table_name)
    print("數(shù)據(jù)庫中是否存在表 exist = ", exist)

    if exist:
        print("表存在")
        string = str(rows)
        string1 = string.replace("[", "")
        value = string1.replace("]", "")
        sql = """INSERT INTO %s(%s) VALUES %s""" % (table_name, field_name, value)
        print("插入表的操作語句 = ", sql)
        cursor.execute(sql)
        db.commit()
    else:
        print("插入失敗 不存在表")

    print("關(guān)閉數(shù)據(jù)庫連接")
    cursor.close()
    # 關(guān)閉數(shù)據(jù)庫連接
    db.close()


def sql_table(bg_data_name, table_name, sql):
    """ 操作數(shù)據(jù)庫

    :param bg_data_name:    str: 連接數(shù)據(jù)庫的名稱
    :param table_name:      str: 表名
    :param sql:             str: 數(shù)據(jù)庫操作語句
    :return:
    """
    # 打開數(shù)據(jù)庫連接
    db = pymysql.connect("127.0.0.1", "root", "chunyan", bg_data_name)

    # 使用 cursor() 方法創(chuàng)建一個游標(biāo)對象 cursor
    cursor = db.cursor()

    # 判斷數(shù)據(jù)庫中是否存在表
    exist = cursor.execute("show tables like '%s'" % table_name)
    print("數(shù)據(jù)庫中是否存在表 exist = ", exist)
    cursor.execute(sql)
    db.commit()

    print("關(guān)閉數(shù)據(jù)庫連接")
    cursor.close()
    # 關(guān)閉數(shù)據(jù)庫連接
    db.close()


def find_table(bg_data_name, table_name, sql):
    """ 操作數(shù)據(jù)庫

    :param bg_data_name:    str: 連接數(shù)據(jù)庫的名稱
    :param table_name:      str: 表名
    :param sql:             str: 數(shù)據(jù)庫操作語句
    :return: tuple
    """
    # 打開數(shù)據(jù)庫連接
    db = pymysql.connect("127.0.0.1", "root", "chunyan", bg_data_name)

    # 使用 cursor() 方法創(chuàng)建一個游標(biāo)對象 cursor
    cursor = db.cursor()

    # 判斷數(shù)據(jù)庫中是否存在表
    exist = cursor.execute("show tables like '%s'" % table_name)
    print("數(shù)據(jù)庫中是否存在表 exist = ", exist)
    cursor.execute(sql)
    # 獲取所有記錄列表
    results = cursor.fetchall()

    print("關(guān)閉數(shù)據(jù)庫連接")
    cursor.close()
    # 關(guān)閉數(shù)據(jù)庫連接
    db.close()
    return results


def del_table_row(bg_data_name, table_name, sql):
    # 打開數(shù)據(jù)庫連接
    db = pymysql.connect("127.0.0.1", "root", "chunyan", bg_data_name)

    # 使用 cursor() 方法創(chuàng)建一個游標(biāo)對象 cursor
    cursor = db.cursor()

    # 判斷數(shù)據(jù)庫中是否存在表
    exist = cursor.execute("show tables like '%s'" % table_name)
    print("數(shù)據(jù)庫中是否存在表 exist = ", exist)

    if exist:
        print("執(zhí)行刪除語句")
        cursor.execute(sql)
        # 提交修改
        db.commit()
    else:
        print("刪除失敗 不存在表")

    print("關(guān)閉數(shù)據(jù)庫連接")
    cursor.close()
    # 關(guān)閉數(shù)據(jù)庫連接
    db.close()


def temp_call():
    table_name = "temp_table6"
    bg_name = "crawler"
    # 創(chuàng)建一個表
    # sql_str = """CREATE TABLE %s (
    #              NAME  CHAR(20) NOT NULL,
    #              AGE INT,
    #              SEX CHAR(1)
    #              )""" % table_name
    # 創(chuàng)建一個主鍵自增長
    # sql_str = """CREATE TABLE %s (
    #              id INT AUTO_INCREMENT,
    #              name CHAR(20) NOT NULL,
    #              age INT,
    #              sex CHAR(1),
    #              PRIMARY KEY (id)
    #              )""" % table_name

    # 創(chuàng)建表
    # create_table(bg_name, table_name, sql_str, True)
    # 刪除表
    # del_table(bg_name, name)
    # 向表中添加數(shù)據(jù)
    # add_table_rows(bg_name, table_name, "name, age, sex", [("主角", 9, "男"), ("配角", 2, "女")])
    # sql = ""
    # insert_table_row(bg_name, table_name, sql)
    # 刪除表中的數(shù)據(jù)
    # sql = "DELETE FROM %s WHERE AGE = %d" % (table_name, 10)
    # print(sql)
    # del_table_row(bg_name, table_name, sql)
    # 更新數(shù)據(jù) 向 ID 為2的那一行數(shù)據(jù),更新 age 為3.
    # sql = "UPDATE %s SET AGE = 3 WHERE ID = %d" % (table_name, 2)
    # sql_table(bg_name, table_name, sql)
    # 查詢表中所有數(shù)據(jù)
    sql = "SELECT * FROM %s" % table_name
    obj = find_table(bg_name, table_name, sql)
    print(obj)

temp_call()
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末务漩,一起剝皮案震驚了整個濱河市拄衰,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌饵骨,老刑警劉巖翘悉,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異居触,居然都是意外死亡镐确,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門饼煞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來源葫,“玉大人,你說我怎么就攤上這事砖瞧∠⑻茫” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵块促,是天一觀的道長荣堰。 經(jīng)常有香客問我,道長竭翠,這世上最難降的妖魔是什么振坚? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮斋扰,結(jié)果婚禮上渡八,老公的妹妹穿的比我還像新娘。我一直安慰自己传货,他們只是感情好屎鳍,可當(dāng)我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著问裕,像睡著了一般逮壁。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上粮宛,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天窥淆,我揣著相機(jī)與錄音,去河邊找鬼巍杈。 笑死忧饭,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的秉氧。 我是一名探鬼主播眷昆,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼汁咏!你這毒婦竟也來了亚斋?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤攘滩,失蹤者是張志新(化名)和其女友劉穎帅刊,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體漂问,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡赖瞒,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了蚤假。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片栏饮。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖磷仰,靈堂內(nèi)的尸體忽然破棺而出袍嬉,到底是詐尸還是另有隱情,我是刑警寧澤灶平,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布伺通,位于F島的核電站,受9級特大地震影響逢享,放射性物質(zhì)發(fā)生泄漏罐监。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一瞒爬、第九天 我趴在偏房一處隱蔽的房頂上張望弓柱。 院中可真熱鬧,春花似錦侧但、人聲如沸吆你。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽妇多。三九已至,卻和暖如春燕侠,著一層夾襖步出監(jiān)牢的瞬間者祖,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工绢彤, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留七问,地道東北人。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓茫舶,卻偏偏與公主長得像械巡,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容