Steps to use ORM to add data in MySQL

Steps to use ORM to add data in MySQL

【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
  • Add to session
  • Submit to database
  • If an exception occurs, roll back the transaction (optional)

【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]

  • Establishing a session with the database
  • Use session to add, delete, modify and query data in the database
  • Use session for transaction control (commit and rollback)
  • You need to close it after use session.close()

[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 operate MySQL database with ORM model framework
  • How to operate MySql database with gorm
  • How to operate MySQL database using orm in .net core
  • PHP operates MySQL database instance based on ORM
  • Can information_schema and mysql in mysql database be deleted?
  • Parsing MySQL's information_schema database

<<:  How to use Docker+DockerCompose to encapsulate web applications

>>:  Share 20 excellent web form design cases

Recommend

Vue advanced usage tutorial dynamic components

Table of contents Basic description AST parsing R...

How to install jupyter in docker on centos and open ports

Table of contents Install jupyter Docker port map...

Detailed explanation of how to use JavaScript paging component

The pagination component is a common component in...

CSS3 property line-clamp controls the use of text lines

Description: Limit the number of lines of text di...

PHP related paths and modification methods in Ubuntu environment

PHP related paths in Ubuntu environment PHP path ...

Introduction to MySQL database performance optimization

Table of contents Why optimize? ? Where to start?...

How to view the database installation path in MySQL

We can view the installation path of mysql throug...

The difference between useEffect and useLayoutEffect in React

Table of contents Prerequisites useEffect commitB...

How to implement nested if method in nginx

Nginx does not support nested if statements, nor ...

Detailed tutorial on installing mysql on centos 6.9

1. Confirm whether MySQL has been installed. You ...

Detailed tutorial of pycharm and ssh remote access server docker

Background: Some experiments need to be completed...

How to make form input and other text boxes read-only and non-editable in HTML

Sometimes, we want the text boxes in the form to b...

Summary of MySQL 8.0 memory-related parameters

Theoretically, the memory used by MySQL = global ...

How to create your first React page

Table of contents What is Rract? background React...