python 連線資料庫

2021-08-03 22:33:04 字數 829 閱讀 2006

原文:

原文1:

安裝mysql-python

pip install mysql-python

dome1

def db_mange(db_bank):

conn = none

try:

# 開啟資料庫連線

conn = mysqldb.connect('localhost', 'root', '123456', db_bank)

# 獲取操作游標

cursor = conn.cursor()

# 選擇連線的資料庫

# conn.select_db(db_bank)

sq1 = "select table_name from information_schema.tables where table_schema='%s' and table_type='base table'" % db_bank

# 檢視資料庫中所有表的名稱

cursor.execute(sq1)

# 提交事務

conn.commit()

results = cursor.fetchall()

# 關閉操作游標

cursor.close()

return results

except mysqldb.error, msg:

print "mysql error %d: %s" % (msg.args[0], msg.args[1])

finally:

if conn:

# 關閉資料庫連線

conn.close()

Python連線資料庫

usr bin env python coding utf 8 import sys reload sys sys.setdefaultencoding utf 8 import pymysql import pymysql.cursors usr bin env python coding utf...

python連線資料庫

1 安裝mysql ubantu下安裝不撰述 2 安裝python版本的mysql開發包 sudo apt get install python mysqldb3 編寫python usr bin python coding utf 8 import mysqldb 引入mysqldb包 開啟資料庫...

python連線資料庫

連線的是mysql資料庫 首先,在idea中執行命令 pip install pymysql 安裝可執行的檔案 檔案安裝完成後,一般會在專案的venv lib site packages 下,需要將pymysql資料夾放到lib下面 此時.py中的import pymysql不報錯 我們就可以使用運...