MySQL simplifies insert and update through stored procedures

Source: Internet
Author: User

For processing purposes, update is performed when there is a target record in the datasheet, insert is executed when the target record does not exist in the data table, and the process of querying the database is reduced once


The stored procedure is designed as follows:

CREATE PROCEDURE ' Pro_savedata ' (in ' sinst ' varchar (+), in ' SUPDT ' varchar ") begin# Direct update record     set @v_updsql =SUPDT;        prepare stmt from @v_updsql;       EXECUTE stmt;           #记录不存在, execute insertif row_count () =0 thenset @v_intsql =sinst;     Prepare stmt from @v_intsql;      EXECUTE stmt;      END If;deallocate prepare stmt;    END;



C # calls are 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);



MySQL simplifies insert and update through stored procedures

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.