pymysql鏈結mysql資料庫 程式設計例項

2021-10-11 01:19:02 字數 941 閱讀 9661

#pymysql鏈結mysql資料庫——程式設計例項

#!

/usr/bin/python

# -*

- coding:

utf-8-

*-import pymysql

host

='132.78.21.14'

port=20

user

='user_test'

passwd

='pass_test'db=

'dbname'

charset

='utf8'

# 開啟資料庫連線

db = pymysql.

connect

(host=

host

, port=

port

, user=

user

, passwd=

passwd

, db=

db, charset=

charset

)# 使用 cursor

() 方法建立乙個游標物件 cursor

cursor = db.

cursor()

# 使用 execute

() 方法執行 sql 查詢

cursor.

execute

("select objectname from table_name where callduration>3"

)# 使用 fetchone

() 方法獲取單條資料.

data = cursor.

fetchone()

print

(the date is :

%s " % data)

# 關閉資料庫連線

db.close

()

mysql檢視鏈結數

進入mysql或phpadmin,用命令 show status 檢視當前活動的連線線程變數值 threads connected 定義和用法 mysql pconnect 函式開啟乙個到 mysql 伺服器的持久連線。mysql pconnect 和 mysql connect 非常相似,但有兩個...

檢視mysql鏈結數

mysql show status like threads variable name value threads cached 58 threads connected 57 這個數值指的是開啟的連線數 threads created 3676 threads running 4 這個數值指的是...

Python使用pymysql鏈結mysql資料庫

先安裝pymysql如下圖 author pythontab.com 可有可無 匯入pymysql的包 import pymysql try 獲取乙個資料庫連線,注意如果是utf 8型別的,需要制定資料庫 conn pymysql.connect host localhost user root p...