包含sql數(shù)據(jù)庫名稱怎么查看的詞條
傳統(tǒng)數(shù)據(jù)庫連接方式:mysql(PyMySQL)
ORM 模型:SQLAlchemy MyBatis、 Hibernate
PyMySQL
安裝:
pip install pymysql
簡單使用
利用 pymysql.connect 建立數(shù)據(jù)庫連接并執(zhí)行 SQL 命令(需要提前搭建好數(shù)據(jù)庫):
import pymysql
db = pymysql.connect(
# mysql 地址
host='182.92.129.158',
# 賬號和密碼
user='tmp',
password='ceshiren.com',
# 數(shù)據(jù)庫
db='tmp',
charset='utf8mb4'
if __name__ == '__main__':
展開全文
with db.cursor() as cursor:
# 查看數(shù)據(jù)庫中有多少表
sql = "show tables;"
# 執(zhí)行 sql 語句
cursor.execute(sql)
# 查看所有數(shù)據(jù)
print(cursor.fetchall())
# 查詢 name = aaaaaa 的數(shù)據(jù)
sql = "select * from test_case_table where name=%s"
cursor.execute(sql, ["aaaaaa"])
print(cursor.fetchall())
(('test_case_table',),)
(('aaaaaa', '新的測試用例', 'test_hello.py', 'def test'),)
ORM
對象關(guān)系映射( object-relational mapping) 利用語言特性,操作數(shù)據(jù)庫,比如對 Python 對象的操作,操作內(nèi)容會映射到數(shù)據(jù)庫里。
SQLALchemy 是 Python 編程語言下的一款 ORM 框架,該框架建立在數(shù)據(jù)庫 API 之上,使用關(guān)系對象映射進行數(shù)據(jù)庫操作。
安裝
pip3 install SQLAlchemy
安裝完成后可創(chuàng)建數(shù)據(jù)庫連接:
engine = create_engine("mysql+pymysql://tmp:ceshiren.com@182.92.129.158/tmp?charset=utf8",echo=True,)
1.echo: 當設(shè)置為 True 時會將 ORM 語句轉(zhuǎn)化為 SQL 語句打印,一般 debug 的時候可用。
2.字段解釋:
3.mysql+pymysql:連接方式,采用 pymysql 。
4.tmp:ceshiren.com:用戶名:密碼。
5.182.92.129.158/tmp:數(shù)據(jù)庫地址和數(shù)據(jù)庫名稱。
創(chuàng)建數(shù)據(jù)庫
from sqlalchemy import create_engine, Column, Integer, String
from sqlalchemy.orm import declarative_base
engine = create_engine("mysql+pymysql://tmp:ceshiren.com@182.92.129.158/tmp?charset=utf8",
echo=True,
# 其子類將 Python 類和數(shù)據(jù)庫表關(guān)聯(lián)映射起來
Base = declarative_base()
# 繼承 Base
class Users(Base):
__tablename__ = "users"
id = Column(Integer, primary_key=True)
name = Column(String(64), unique=True)
def __init__(self, name):
self.name = name
if __name__ == '__main__':
# 生成數(shù)據(jù)庫表,如果有此庫會忽略
Base.metadata.create_all(engine)
declarative_base() 是 SQLALchemy 內(nèi)部封裝的一個方法,可以讓其子類將 Python 類和數(shù)據(jù)庫表關(guān)聯(lián)映射起來。
增和查
SQLALchemy 使用 Session 用于創(chuàng)建程序和數(shù)據(jù)庫之間的會話,通過 Session 對象可實現(xiàn)對數(shù)據(jù)的增刪改查。
from sqlalchemy.orm import sessionmaker
# 創(chuàng)建session
Session = sessionmaker(bind=engine)
session = Session()
# 添加新數(shù)據(jù)
add_user = Users("student1")
# 提交
session.add(add_user)
session.commit()
# 查詢
result = session.query(Users).filter_by(name="student1").first()
print(result.id, result.name)
上述代碼新增數(shù)據(jù)后進行查詢,結(jié)果如下:
1 student1
數(shù)據(jù)持久化技術(shù)就先介紹到這里,大家可以試著做一下練習(xí),
我們后面會講跨平臺API對接,請持續(xù)關(guān)注哦~
更多技術(shù)文章:https://qrcode.ceba.ceshiren.com/link?name=articleproject_id=qrcodefrom=souhutimestamp=1649562192author=BB
喜歡軟件測試的小伙伴們,如果我的博客對你有幫助、如果你喜歡我的博客內(nèi)容,請 “點贊” “評論” “收藏” 一鍵三連哦!
掃描二維碼推送至手機訪問。
版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。