The auto-increment ID is returned after the SQLite database is inserted in ASP. NET.

Source: Internet
Author: User

I did not want to talk about anything. I just researched it and found it ~~~ Post Code:

///   <Summary> Insert
/// Returns the inserted ID.
///   </Summary>
///   <Param name = "groupname"> </param>
///   <Param name = "gid"> </param>
///   <Returns> </returns>
Public   Bool Insert ( String Groupname, Out   String GID)
{
String SQL =   " Insert into groupca (groupname) values (@ groupname); select last_insert_rowid (); " ;
Helper. createcommand (SQL );
Helper. addparameter ( " @ Groupname " , Groupname As   Object );
String Res = Helper. executescalar ();
If ( ! String . Isnullorempty (RES ))
{
GID = Res;
Return   True ;
}
Else
{
GID =   " 0 " ;
Return   False ;
}
}

 

 

The aboveCodeI used the operation class of an SQLite database I created earlier. Of course, the most important one is the statement. In fact, select last_insert_rowid (); It is equivalent to select @ identity in MSSQL; 

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.