Mysql은 가장 널리 사용되는 오픈 소스 데이터베이스 중 하나입니다. Python은 이 데이터베이스에 연결하고 이를 사용하여 데이터를 저장하고 검색하는 방법을 제공합니다.
사용 중인 Python 환경에 따라 다음 방법 중 하나를 사용하여 pymysql 패키지를 설치할 수 있습니다.
# From python console pip install pymysql #Using Anaconda conda install -c anaconda pymysql # Add modules using any python IDE pymysql
이제 다음 코드를 사용하여 Mysql 환경에 연결할 수 있습니다. 연결한 후 데이터베이스 버전을 찾고 있습니다.
import pymysql # Open database connection db = pymysql.connect("localhost","testuser","test123","TESTDB" ) # prepare a cursor object using cursor() method cursor = db.cursor() # execute SQL query using execute() method. cursor.execute("SELECT VERSION()") # Fetch a single row using fetchone() method. data = cursor.fetchone() print ("Database version : %s " % data) # disconnect from server db.close()
위 코드를 실행하면 다음과 같은 결과가 나옵니다. -
Database version : 8.0.19
데이터베이스 명령을 실행하기 위해 데이터베이스 커서와 커서에 전달할 Sql 쿼리를 만듭니다. 그런 다음 커서 실행 결과를 얻기 위해cursor.execute 메서드를 사용합니다.
import pymysql # Open database connection db = pymysql.connect("localhost","username","paswd","DBname" ) # prepare a cursor object using cursor() method cursor = db.cursor() sql = "SELECT * FROM EMPLOYEE \ WHERE INCOME > '%d'" % (1000) try: # Execute the SQL command cursor.execute(sql) # Fetch all the rows in a list of lists. results = cursor.fetchall() for row in results: fname = row[0] lname = row[1] age = row[2] sex = row[3] income = row[4] # Now print fetched result print "fname=%s,lname=%s,age=%d,sex=%s,income=%d" % \ (fname, lname, age, sex, income ) except: print "Error: unable to fecth data" # disconnect from server db.close()
위 코드를 실행하면 다음과 같은 결과가 나옵니다. -
fname = Jack, lname = Ma, age = 31, sex = M, income = 12000
위 내용은 Python의 MySqldb 연결의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!