2014年12月31日 星期三

【SQL】在 Windows 環境中使用 Python 中取得 MySQL 資料

步驟一:先下載並安裝 MySQLdb for Python,例:MySQL-python-1.2.5.win32-py2.7.exe
下載網址:https://pypi.python.org/simple/mysql-python/

步驟二:在 Python 中輸入下列程式碼:
```python import MySQLdb db = MySQLdb.connect(host="127.0.0.1", user="root", passwd="", db="db_test") cursor = db.cursor() cursor.execute("select data from table_test") result = cursor.fetchall() for record in result: print record[0], "
" ```

沒有留言:

張貼留言