在python程序里,如何鏈接MySQL數(shù)據(jù)庫?
連接MYSQL需要3步
1、安裝
必須先安裝MySQL驅(qū)動。和PHP不一樣,Python只默認安裝了SQLite的驅(qū)動。最常用的包是MySQLdb但是用easy_install安裝很困難。
對于Window用戶,你可以獲取MySQLdb的exe。
對于Linux,可以下載python-mysqldb(可以用sudo apt-get install python-mysqldb命令直接在命令行下載)
對于Mac用戶,可以用Macport下載MySQLdb
2、使用
裝完之后重啟。這樣做可以減少問題。
然后就像用其他包一樣:
#!/usr/bin/python
importMySQLdb
db =MySQLdb.connect(host=“l(fā)ocalhost”,# your host, usually localhost
user=“john”,# your username
passwd=“megajonhy”,# your password
db=“jonhydb”)# name of the data base
# you must create a Cursor object. It will let
# you execute all the queries you need
cur = db.cursor()
# Use all the SQL you like
cur.execute(“SELECT * FROM YOUR_TABLE_NAME”)
# print all the first cell of all the rows
for row in cur.fetchall():
print row[0]
還有很多用法和選項,這里只舉了一個基本的例子。
3、高級用法
一旦你知道它是如何工作的,你可能想用ORM來避免手動寫入SQL,來把表變成Python對象。Python中最有名的ORM叫做SQLAlchemy(強烈推薦)
最近又在Python里發(fā)現(xiàn)了一個好東西:peewee。它是個非常輕巧的ORM,非常容易安裝和使用。一些小項目和獨立app都可以使用它,像SQLLAlchemy或者Django用在這里有點小題大做了:
import peewee
from peewee import*
db =MySQLDatabase(‘jonhydb’, user=‘john’,passwd=‘megajonhy’)
classBook(peewee.Model):
author = peewee.CharField()
classMeta:
database = db
Book.create_table()
book =Book(author=“me”, title=‘Peewee is cool’)
book.save()
for book inBook.filter(author=“me”):
print book.title
Peeweeis cool
按上邊操作即可運行,除了peewee(pip install peewee)不需要別的的操作。安裝非常簡單。
責任編輯:haq
-
MySQL
+關(guān)注
關(guān)注
1文章
798瀏覽量
26399 -
python
+關(guān)注
關(guān)注
55文章
4768瀏覽量
84376
發(fā)布評論請先 登錄
相關(guān)推薦
評論