【Foreword】If you want to use ORM to operate data in the database, the premise is that you have created a new ORM model; that is, the model we have built before https://www.jb51.net/article/218036.htm [ORM operation steps]
【Constructing ORM model objects】user_obj = User( username="use1", password="123456", real_name = "User 1", age=12 ) 【Add to session】# Add an object session.add(user_obj) # Add multiple objects session.add_all([user1,user2,user3]) [The role of session]
[Creating a session]There are two methods, the following code example # Method 1: Instantiate session from sqlalchemy.orm import Session with Session(engine) as session: session.add(User()) session.commit() # Method 2: Create a factory function from sqlalchemy.orm import sessionmaker Session = sessionmaker(engine) with Session.begin() as session: session.add(User()) [Submit data to database]with Session(engine) as session: session.add(user_obj) session.add_all([user1,user1,user1]) session.commit() [Exception occurred, rollback transaction]with Session(engine) as session: session.begin() try: session.add(user1) session.add(user2) except: session.rollback() raise else: session.commit() [Other common methods in Session objects] 1. execute(statement, params=None,*args) executes SQL query 2. delete(instance) physically deletes data 3. get(entity,idnet,*args) returns the ORM object that meets the conditions according to the primary key/None 4. query(*entities,**kwargs) Use ORM query to return Query object This is the end of this article about using ORM to add data in Mysql. For more relevant ORM MySQL database content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to use Docker+DockerCompose to encapsulate web applications
>>: Share 20 excellent web form design cases
Preface In the development of small programs, we ...
Preface I recently encountered this requirement a...
Table of contents Preface 1. Install Docker 2. In...
Table of contents Preface optimization SSR Import...
Generally speaking, once a column in a data table...
1. Advantages and Disadvantages of Indexes Advant...
I accidentally discovered a great artificial inte...
Before CSS3, gradient images could only be used a...
Preface When the system space usage is too large ...
If you're collecting information from your us...
Recently, we received a request for help from a c...
Table of contents 1. Synchronization Principle 2....
If we want to perform batch operations on a type ...
This technique comes from this article - How to a...
Table of contents Error demonstration By computed...