Python中對MySQL操做實踐

在64位windows下,MySQL的安裝真是個大麻煩,安裝卸載了不下10次,最終搞定了。python

1-確認MySQL已經安裝正確並保持運行。數據庫

2-Python中安裝Python-MySQL模塊。windows

3-python環境下:code

<!-- lang: python -->
import MySQLdb #引入MySQLdb模塊
conn = MySQLdb.connect(host='127.0.0.1', port=3306, user='root',passwd='000000')   #創建與數據庫系統的鏈接
cursor = conn.cursor() #獲取操做遊標
cursor.execute("""create database python """)  #執行SQL,建立一個名爲python的數據庫    
cursor.close() #關閉連接,釋放資源
相關文章
相關標籤/搜索