Adding Rows To a Table By Using the SQL INSERT Statement
Procedure
- Formulate an SQL INSERT string for adding rows of data to a table.
- Call the createStatement() method of the Session object. Pass the SQL INSERT string as an argument.
- If the SQL INSERT string contains parameter markers, call the statement methods to set the parameter values.
- Run the INSERT statement by calling the executeUpdate() method of the Statement object.
- Check the result of the executeUpdate() method to verify that the correct number of rows have been inserted into the table.
- Optional: Set different parameter values and rerun the INSERT statement by repeating steps Step 3 to Step 5.
- Close the Statement object.
Copyright © Cloud Software Group, Inc. All rights reserved.