MySQL simplifies INSERT and UPDATE through stored procedures

Source: Internet
Author: User

MySQL simplifies INSERT and UPDATE through stored procedures

MySQL simplifies INSERT and UPDATE through stored procedures

Processing purpose: Execute UPDATE when the target record exists in the data table. When the target record does not exist in the data table, execute INSERT. This reduces the process of querying the database once.

The storage process is designed as follows:

Create procedure 'Pro _ savedata' (IN 'sinst' varchar (500), IN 'supdt 'varchar (500 ))
BEGIN
# Directly update records
Set @ v_updsql = supdt;
Prepare stmt from @ v_updsql;
EXECUTE stmt;

# If the record does not exist, execute INSERT
IF ROW_COUNT () = 0 THEN
Set @ v_intsql = sinst;
Prepare stmt from @ v_intsql;
EXECUTE stmt;
End if;
Deallocate prepare stmt;
END;

C # The call is as follows:

Int r = data. ExecuteNonQuery (System. Data. CommandType. StoredProcedure,
@ "CALL pro_SaveData ('insert INTO 'table' VALUES ('1', 'username ')',
'Update table SET name = 'table222 'WHERE id = '1';') ", null );

This article permanently updates the link address:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.