JDBC insert that returns primary key

JDBC insert that returns primary key

How to write code for jdbc insert that returns primary key?

Help me fast

Thanks

View Answers

January 14, 2013 at 9:25 PM

Hi,

Following code can be used:

//Add record into database

String queryInsert = "insert into keyworduniquetable (keyword) values (?)";
PreparedStatement pstmtInsert  = 
    conn.prepareStatement(queryInsert,Statement.RETURN_GENERATED_KEYS);
pstmtInsert.setString(1, keyword);
pstmtInsert.executeUpdate();
ResultSet rsInsert = pstmtInsert.getGeneratedKeys();
if(rsInsert != null && rsInsert.next()){
    int newId = rsInsert.getInt(1);
    System.out.println("New id is: "+newId);
}

Thanks









Related Tutorials/Questions & Answers:
JDBC insert that returns primary key
JDBC insert that returns primary key  How to write code for jdbc insert that returns primary key? Help me fast Thanks   Hi, Following code can be used: //Add record into database String queryInsert = "insert
primary key and unique key
primary key and unique key  Whats is mean by primary key and unique key
Advertisements
primary key and unique key
primary key and unique key  hello, What's the difference between a primary key and a unique key?   hii,ADS_TO_REPLACE_1 Unique key.... Primary key: columns entry of duplicate as well as null values are restricted
SQL Primary Key
SQL Primary Key       The Primary Key in SQL is used to uniquely identifies each records in a database table. The Primary Key of the Table does not include NULL values
What is a "primary key"?
What is a "primary key"?  What is a "primary key"?   Hi, Here is the answer,ADS_TO_REPLACE_1 A primary key is used to uniquely identify...). A primary key can consist of one or more fields on a table. When multiple fields
composinte primary key in hibernate
composinte primary key in hibernate  I am facing following problem, Inside the database(mssql), i have created a table without primary key... primary key with all the columns of the table and hibernate s/w has created two pojo
SQL Alter Table Primary Key
SQL Alter Table Primary Key       Alter a Table Primary Key in SQL modifies the existing table and adds a primary key. Create Table Stu_TableADS_TO_REPLACE_1 SQL
Adding A Primary Key to an Existing Table
Adding A Primary Key to an Existing Table   Been trying to add a primary key to a MySQL table using Java for two days with no success. I'm new... KEY (SerialNo)"); out.println("Primary key added
SQL PRIMARY KEY Constraint
varchar(10), PRIMARY KEY(Stu_Id)) Insert data into Stu... SQL PRIMARY KEY Constraint       The PRIMARY KEY constraint is used to uniquely identifies each
Mysql add primary key
Mysql add primary key       Mysql add Primary Key is used to add primary key on the column... of this tutorial illustrate an example from 'Mysql Add Primary Key'. To understand
jdbc insert
jdbc insert  Hi , i want to insert a declared integer variable into a mysql table through jdbc. how to insert that. help me with query... thanks... user(id INTEGER, " + "name VARCHAR(25), address VARCHAR(100), primary key(id
Mysql Alter Table Primary Key
->PRIMARY KEY(Empid) ->); Query to insert... Employees and add keyword insert the 'Empname'  as Primary Key in the table... Mysql Alter Table Primary Key   
SQL PRIMARY KEY Constraint
), PRIMARY KEY(Stu_Id)) Insert data into Stu... SQL PRIMARY KEY Constraint       The PRIMARY KEY constraint is used to uniquely
difference between a primary key and a unique key?
difference between a primary key and a unique key?  What's the difference between a primary key and a unique key?   Hi, The column holding the primary key constraint cannot accept null values.whereas column holding
Create primary key using hibernate
Create primary key using hibernate  How to create primary key using hibernate?   The id element describes the primary key for the persistent class and how the key value is generated. ADS_TO_REPLACE_1   
changing primary key of parent table
changing primary key of parent table  I want to change one primary key from a table where primary key is auto created? How can I do that? I have tried UPDATE person SET personid=3494 WHERE personid=8483; and i get the following
Mysql Alter Column Primary Key
Mysql Alter Column Primary Key       Mysql Alter Column Primary Key is used to modify table and redefine the Primary Key Column in a table. Understand with ExampleADS
Difference between not null and primary key in mysql
Difference between not null and primary key in mysql  Explain not null and primary key in mysql
How to create primary key using hibernate?
How to create primary key using hibernate?  Hi, How to create primary key using hibernate? Thanks
hibernate annotations with composite primary key
to use hibernate annotations in case of composite primary key in one table. I tried like this, I have created a table without primary key. By default mssql has created a composite primary key with all the columns of the table. table
SQL Alter Table Primary Key tutorial
SQL Alter Table Primary Key       Alter a Table Primary Key in SQL modifies the existing table and adds a primary key. Create Table Stu_TableADS_TO_REPLACE_1 SQL
how tohow to create a table with primary key and foreign keyhow to create a table with primary key and foreign key
how tohow to create a table with primary key and foreign keyhow to create a table with primary key and foreign key  how to create a table using java language with primary key and foreign key   Hi Friend, A foreign
ModuleNotFoundError: No module named 'django-uuid-primary-key'
ModuleNotFoundError: No module named 'django-uuid-primary-key'  Hi...: No module named 'django-uuid-primary-key' How to remove the ModuleNotFoundError: No module named 'django-uuid-primary-key' error? Thanks   
How to auto increment primary key in mysql...
How to auto increment primary key in mysql...  How to auto increment primary key in mysql... and one more thing i need to get auto increment value in front end each time for inserting the value[JSP
SQL Auto increment Primary Key
_roseindia'. If we don't insert any values into the primary key column, the auto... SQL Auto increment Primary Key       SQL Auto increment Primary Key is used to allow a unique
Define sequence generated primary key in hibernate
Define sequence generated primary key in hibernate  How to define sequence generated primary key in hibernate?   Use value "sequence" for class attribute for generator tag. <id column="USER_ID" name="id" type
inserting into mysql database with uid to be primary key and autoincrement
inserting into mysql database with uid to be primary key and autoincrement .... In the database table, set the uid as the primary key and auto-increment. Then, whenever...("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc
query regarding auto increment primary key
query regarding auto increment primary key  i want to use s1,s2.... as my auto increment primary key.cant i do this in mysql
can we update table in hibernate with out primary key in table?
can we update table in hibernate with out primary key in table?  can we update table in hibernate with out primary key in table
Jdbc Insert Statement
JDBC Insert Statement       Add a row to a existing table using insert statement in JDBC. The tutorial illustrates an example from JDBC Insert Statement. In this program
JDBC Insert Statement Example
.style1 { text-align: center; } JDBC Insert Statement Example JDBC Insert statement allow you to insert record into the table of the database... int(9)  PRIMARY KEY NOT NULL, Name tinytext NOT NULL, Course varchar(25
JDBC: Insert Records Example
JDBC: Insert Records Example In this section, you will learn how to insert records to the table using JDBC API. Insert Records : After creating table you can insert records. Inserting records means adding values to your table which
Identify correct and incorrect statements or examples about an entity bean's primary key and object identity.
an entity bean's primary key and object identity. Prev Chapter 8... and incorrect statements or examples about an entity bean's primary key and object... of an entity object on the basis of its PRIMARY KEY
JDBC Insert Record
JDBC Insert Record       The Tutorial wants to explain a code that describe a JDBC Insert.... In JDBC,Statement object perform an insert record using  batch updates
code for image to key generation - JDBC
code for image to key generation  plz help me how cud i convert image into key using sha1 algorithm in java.... plz give me the code to write it... i m doing image based registration
JDBC Prepared Statement Insert
JDBC Prepared Statement Insert       The Tutorial illustrates a program in JDBC Prepared Statement Insert. In this Tutorial  the code describe the include a class
oracle insert statement error - JDBC
oracle insert statement error  hi.. please help me to insert a image into oracle 11g database and please say me how can i insert image from directory like G:\imagefolder\ultrasoundimage\02us02.jpeg please help me
JDBC Video Tutorial- How to insert data into MySQL database table?
;          PRIMARY KEY (`id`) ... to insert into database: Connect to MySQL Database using JDBC Create..., `salary` int(11) DEFAULT NULL, PRIMARY KEY (`id
JDBC Insert Preparedstatement
JDBC Insert Preparedstatement     ... want to describe you a code that helps you in understanding JDBC Insert Prepared Statement. For this we have a class Jdbc Insert Prepared statement, Inside
JDBC Insert Prepared Statement
JDBC Insert PreparedStatement PreparedStatement represents a precompiled...) default NULL, PRIMARY KEY (`rollno`) ) Once the database is ready we can create an Eclipse Project and then add the MySQL JDBC Driver file. If you don
how to insert date&time coloumn value in mssql - JDBC
how to insert date&time coloumn value in mssql  how to insert...; Hi friend, Code insert date and time in Database : <% int val=0; Connection con=null; PreparedStatement pstatement = null; String url = "jdbc
JDBC batch insert
JDBC batch insert       JDBC Batch Insert is a set of SQL Statements sent to the database and executed... to carry out JDBC Batch Insert are as follows - ADS_TO_REPLACE_1
Mysql Alter Foreign Key
Mysql Alter Foreign Key       A Foreign Key is a field that marks to the primary key...` varchar(50) NOT NULL,  `contact_name` varchar(50) default NULL,  PRIMARY KEY
JDBC batch insert using Java bean class
In this tutorial, you will learn about JDBC batch insert using java bean / model class
how to insert data into databasse by using jdbc
and insert those inputs into database using JDBC.   Here is a jsp code...how to insert data into databasse by using jdbc  â?˘ Create...("jdbc:mysql://localhost:3306/roseindia", "root", "root"); Statement
how to insert data into databasse by using jdbc
and insert those inputs into database using JDBC.   Here is a jsp code...how to insert data into databasse by using jdbc  â?˘ Create...("jdbc:mysql://localhost:3306/roseindia", "root", "root"); Statement
how to insert data into databasse by using jdbc
and insert those inputs into database using JDBC.   Here is a jsp code...how to insert data into databasse by using jdbc  â?˘ Create...("jdbc:mysql://localhost:3306/roseindia", "root", "root"); Statement
how to insert data into databasse by using jdbc
and insert those inputs into database using JDBC.   Here is a jsp code...how to insert data into databasse by using jdbc  â?˘ Create...("jdbc:mysql://localhost:3306/roseindia", "root", "root"); Statement
insert
insert  insert data in database from servlet through JDBC   Ho Friend, Please visit the following:ADS_TO_REPLACE_1 Insert data into database Thanks
JDBC: MYSQL Auto_Increment key Example
JDBC: MYSQL Auto_Increment key Example In this tutorial we are setting one field of table auto_incremented using JDBC API. Auto_Increment key : Auto... TABLE department(id int NOT NULL AUTO_INCREMENT,name varchar(30),PRIMARY KEY(id

Ads