SQLCE3.5 database transaction processing, sqlce3.5 Database Transaction

Source: Internet
Author: User

SQLCE3.5 database transaction processing, sqlce3.5 Database Transaction

By chance, I learned from MSDN today (I always thought that SQLCE does not support transactions ).

I believe that many WINCE developers, like me, directly use sqlce. excute ("begin tran") but find that SQL ce does not support syntax errors.

In fact this is caused by T-SQL inertial thinking. The following shows how to use: (environment. NET35 + SQLCE35 + XP + VS2008)

Sqlce. open (); // open the SQLCE database. If you do not want to write the actual code.

// Start

SqlCeTransaction m_tran = sqlce. BeginTransaction (); // starts a transaction, which is encapsulated into a class different from the T-SQL.

// Execute your statement (Omitted) here and the T-SQL is basically no difference

M_tran.Rollback (); // rollback operation

.......

M_tran.Commit (); // submit a transaction

**************************************** ******** Completed, don't ask if you don't understand it. People with a basic understanding can understand it at a glance! ******************************

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.