Python 建立資料表

來源:互聯網
上載者:User

標籤:turn   cursor   python   type   __name__   定義   creat   nbsp   arc   

其實跟 Python 執行 MySQL 事務的操作差不多:

[[email protected] ~]# cat 1.py#!/usr/bin/env pythonimport MySQLdbdef connect_mysql():    db_config = {        ‘host‘: ‘127.0.0.1‘,        ‘port‘: 3306,        ‘user‘: ‘root‘,        ‘passwd‘: ‘pzk123‘,        ‘db‘: ‘test‘    }    c = MySQLdb.connect(**db_config)    return cif __name__ == ‘__main__‘:    c = connect_mysql()                             # 先串連資料庫    cus = c.cursor()    sql = ‘‘‘                                       # 定義建表語句        create table t1(            id int primary key not null,            name varchar(10) not null,            age int not null        );    ‘‘‘    try:        cus.execute(sql)                            # 建立資料表        c.commit()    except Exception as e:        c.rollback()        raise e    finally:        c.close()

結果如下:

[[email protected] ~]# mysql -uroot -ppzk123 -e "use test; desc t1;"+-------+-------------+------+-----+---------+-------+| Field | Type        | Null | Key | Default | Extra |+-------+-------------+------+-----+---------+-------+| id    | int(11)     | NO   | PRI | NULL    |       || name  | varchar(10) | NO   |     | NULL    |       || age   | int(11)     | NO   |     | NULL    |       |+-------+-------------+------+-----+---------+-------+

 

 

 

 

 

 

 

       

Python 建立資料表

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.