Obtain automatically generated primary keys

Source: Internet
Author: User

Steps:
1) set the primary key to be returned. [use the second parameter of preparedstatement]
Preparedstatement preparestatement (string SQL, int autogeneratedkeys); // creates a default preparedstatement object that can obtain automatically generated keys.
Parameters:
Autogeneratedkeys-Indicates whether to return the automatically generated key flag,
It is one of statement. return_generated_keys or statement. no_generated_keys.
2) Execute SQL statements
Pstmt.exe cuteupdate (); // other methods are also supported
3) obtain all automatically generated keys created by executing this statement object
Resultset getgeneratedkeys ()
4) obtain the generated primary key
While (Rs. Next ()){
System. Out. println ("primary key value:" + Rs. getint (1 ));
}

Code:

/* You can return the generated primary key */pstmt = Conn. preparestatement (sqlmapping. add_user_primarysql, statement. return_generated_keys);/* Execute SQL statement */INT rows = pstmt.exe cuteupdate ();/* obtain the key value generated by the executed SQL statement */rs = pstmt. getgeneratedkeys (); // generatedkeys: The generated key while (RS. next () {system. out. println ("primary key value:" + Rs. getint (1 ));}

Obtain automatically generated primary keys

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.