Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

एक MySQL डेटाबेस से सम्मिलित पंक्तियों की अनुक्रमणिका प्राप्त करना

प्रेषक:http://dev.mysql.com/doc/refman/5.0/en/connector-j-usagenotes-basic.html#connector-j-usagenotes-last-insert-id

stmt.executeUpdate(
        "INSERT INTO autoIncTutorial (dataField) "
        + "values ('Can I Get the Auto Increment Field?')",
        Statement.RETURN_GENERATED_KEYS);

//
// Example of using Statement.getGeneratedKeys()
// to retrieve the value of an auto-increment
// value
//

int autoIncKeyFromApi = -1;

rs = stmt.getGeneratedKeys();

if (rs.next()) {
    autoIncKeyFromApi = rs.getInt(1);
} else {

    // throw an exception from here
}

rs.close();

rs = null;


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. SQL (MySQL) बनाम NoSQL (CouchDB)

  2. MySql संग्रहीत कार्यविधि को चलाने के लिए न्यूनतम पहुँच स्तर

  3. MySQL कुप्पी के साथ कनेक्शन.commit () कॉल करने के बाद अद्यतन नहीं हो रहा (काम कर रहे)

  4. MySQL में उपयोगकर्ताओं और प्रमाणीकरण को कैसे प्रबंधित करें

  5. ORDER क्लॉज के साथ AES_DECRYPT का उपयोग करके MySQL में BLOB डेटा लौटाया गया