search
HomeDatabaseMysql TutorialHow to effectively implement the addition, deletion, modification and query functions of mysql

1. Preface

Adding, modifying, deleting and querying data are the most commonly used functions in application software systems. As a software developer, it is very important to realize the above functions efficiently and ensure the correctness, standardization and validity of system data.

This article combines the add, delete, modify and check functions that I have completed in project practice, and analyzes and summarizes the development process and methods to implement the add, delete, modify and check functions, so as to better complete the development of similar functions in subsequent development work.

2. Development process and method

Added function

Added function is mainly to save the data items entered by the user on the page to the corresponding data table field in the data table .

The following steps can be used for analysis and implementation:

Based on business needs, what data items do users need to enter on the analysis page?

What data items need to be entered?

What are the entry methods (text box entry, drop-down list entry, checkbox entry, radio entry) and verification rules (non-null verification, field type, field length, field format) for each data item?

The corresponding relationship between input data items and data table fields (corresponding to which data table, which data field,)

Each data item on the page corresponds to which field of which data table?

Do the data item values ​​entered on the page need to be converted into database field values? (For example, convert the yes and no entered by the user on the page into database fields 1 and 0)

When saving data in the background, follow the following steps:

If the data verification is incorrect, then Prompt which data items are in incorrect format and how to fill them in the correct format.

If the save fails, the reason for the failure will be prompted to the user so that the user can save again after modification.

If the save is successful, the successful operation result will be fed back to the user.

If the save is abnormal, the user will be prompted that an exception occurred during the save operation, please try again.

If the VO data on the page only corresponds to one data table, just save it directly to one data table.

If the VO data of the page needs to be saved to multiple data tables in the database, a transaction management mechanism needs to be used to control the integrity of the data saving operation to prevent some tables from being saved successfully and some from failing to be saved.

If there are duplicate records, the duplicate information will be fed back to the user

If there are no duplicate records, perform the following saving steps.

First, you need to receive the data items entered on the page, then verify the legality and validity (type, length) of the data items, and

Then, combined with the uniqueness rules of the data, Determine whether duplicate data records already exist;

Next, implement the conversion of page VO data items and persistent object PO: convert the VO data items entered by the user on the page into database entity objects, and call the corresponding Primary key generation rules generate primary key fields of database entity objects and other field values ​​that have nothing to do with the business but need to be saved in the database; perform the following save operation:

Finally, feed back the processing results of the save operation to the user :

Delete function

The deletion function mainly deletes the data selected by the user from the database so that the data cannot be seen on the page.

The following methods can be used to analyze and implement:

Analyze the implementation method of deletion:

Should hard deletion (directly delete data from the database) or soft deletion ( Use the identification bit to identify that the data has been deleted)

Cascade data deleted hierarchically:

The data deleted by the operation on the page, whether there is record deletion: delete a piece of data in a data table , and delete the data records related to this record in another data table at the same time.

Analyze the operation method of deletion:

Delete according to which data item in the data record

Supports only one piece of data can be deleted at a time

Supports deleting multiple pieces of data at one time

Implementation method of deletion operation:

Obtain the primary key value of the data record that needs to be deleted in the background, and perform the deletion operation; if there is a cascade deletion In this case, after deleting the data record of the current table, you need to delete the data records related to the record in the related data table at the same time to ensure that there is no invalid redundant data in the database.

In the case of batch deletion, if one of the data is deleted incorrectly, the record will be written into the prompt message and the deletion of subsequent data records will continue;

Feedback the processing results of the deletion operation To the operating user:

If the deletion fails, the reason for the deletion failure will be fed back;

If the deletion is abnormal, the reason for the exception will be fed back and the user will be prompted to try again.

If the deletion is successful, a prompt message indicating that the operation is successful will be fed back to the user;

When viewing the data, the primary key of the data record will be hidden and displayed on the page,

When selecting When data is generated, the primary key corresponding to the selected data is saved.

When the user clicks the delete button, the user is first prompted to confirm the deletion. If the user chooses to confirm the deletion, the following processing steps are performed:

In After the deletion is successful, the displayed data on the page needs to be refreshed to display the deletion result (successfully deleted data is no longer displayed on the page) to the user.

Modification function

The modification function is mainly to re-edit the existing data items in the database and save the modified data to the database.

Query function

As mentioned in the overview, the development method of the Web layer is as follows:

Writing page VO: Analyze which data items need to be submitted by the Web display layer and which result data needs to be returned Item; uniformly encapsulate request data items and result data items into page VO. During coding implementation, the page VO class is an ordinary Bean class. It is enough to define data items and provide set and get methods.

Write the control layer Action: define the page VO object; use the page VO object to receive the request data submitted by the Web display layer; convert the request data submitted by the VO into a data transmission object and transmit it to the Service layer for use; receive the service The processing result returned by the layer; convert the data transfer object returned by the processing result into the result data item of VO.

Write the Action configuration file:

Establish the request correspondence between the display layer request and the control layer: establish the relationship between the page request and the Action by configuring the Action information in the Action configuration file Correspondence.

Write the display layer page:

Use page VO to receive the user's request data: Set the form name in the page to be the same as the attribute name of the page VO to ensure that the page VO can receive the request data .

Set the Action address corresponding to the request: For the page button that submits the request, set the requested address to the Action address to ensure that the request can be submitted to the corresponding.

Receive the returned processing result: Receive the processing result returned by the request, and perform corresponding processing based on the processing result.

3. Summary

Based on the analysis of the main functions of the Web display layer and the Web control layer, this article conducts an in-depth analysis of the data interaction between the two, and proposes a proposal based on data interaction as the core It explains the development methods of the Web layer and summarizes the precautions for the development of the Web layer, which provides good reference and guidance for developing Web layer functions.

The above is the detailed content of How to effectively implement the addition, deletion, modification and query functions of mysql. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor