# -*- coding: utf-8 -*- import MySQLdb try: conn =MySQLdb.connect(host='localhost',user='root',passwd='123456',db='python_test',port=3306) cur = conn.cursor() #光標(biāo) cur.execute('use python_test;') cur.execute('CREATE TABLE test(id char(20));') cur.close() conn.close() except MySQLdb.Error,e: print '連接失敗。',e
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、揭東ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的揭東網(wǎng)站制作公司
安裝MySQLdb模塊:
yum install MySQL-python -y