In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
This article will explain in detail how to operate the database in Python. The content of the article is of high quality, so the editor will share it for you as a reference. I hope you will have a certain understanding of the relevant knowledge after reading this article.
Basic process of database operation
Database connection object Connection
# connecting to sqlite database
Conn = sqlite3.connect ('database')
# important methods under Connection object
# get Cursor cursor object
Conn.cursor ()
# commit database transactions
Conn.commit ()
# rollback database transactions
Conn.rollback ()
# close database connection
Conn.close ()
# example demonstrates import sqlite3 try: # establishing a database connection conn = sqlite3.connect ('test.db') # creating a cursor object cursor = conn.cursor () # performing a sql insert operation sql =' INSERT INTO user (name, age) VALUES (?,?)' Cursor.execute (sql, ("Jack", 18)) # commit database transaction conn.commit () except sqlite3.Error as e: # rollback database transaction conn.rollback () finally: # close cursor if cursor: cursor.close () # close database connection if conn: conn.close ()
Cursor object Cursor
# important methods under Cursor object
Execute a sql statement, where sql is a sql statement and params is a sequence or dictionary type
Execute (sql [, params])
Return all data from the result set
Fetchall ()
Operation demonstration
On how to operate the database in Python to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.