diff --git a/product_docs/docs/jdbc_connector/42.2.12.3/06_executing_sql_commands_with_executeUpdate().mdx b/product_docs/docs/jdbc_connector/42.2.12.3/06_executing_sql_commands_with_executeUpdate().mdx index c7384a4842b..2292926b711 100644 --- a/product_docs/docs/jdbc_connector/42.2.12.3/06_executing_sql_commands_with_executeUpdate().mdx +++ b/product_docs/docs/jdbc_connector/42.2.12.3/06_executing_sql_commands_with_executeUpdate().mdx @@ -121,7 +121,8 @@ At this point, the `PreparedStatement` has parsed and planned the `INSERT` state The `AddEmployee()` method prompts the user for an employee ID and name and calls `setObject()` with the values supplied by the user: ```text -stmt.setObject(1,new Integer(c.readLine("ID:"))); stmt.setObject(2, c.readLine("Name:")); +stmt.setObject(1,new Integer(c.readLine("ID:"))); +stmt.setObject(2, c.readLine("Name:")); ``` And then asks the PreparedStatement object to execute the statement: diff --git a/product_docs/docs/jdbc_connector/42.2.19.1/06_executing_sql_commands_with_executeUpdate().mdx b/product_docs/docs/jdbc_connector/42.2.19.1/06_executing_sql_commands_with_executeUpdate().mdx index ee73f3dbd63..cb309bfe9ee 100644 --- a/product_docs/docs/jdbc_connector/42.2.19.1/06_executing_sql_commands_with_executeUpdate().mdx +++ b/product_docs/docs/jdbc_connector/42.2.19.1/06_executing_sql_commands_with_executeUpdate().mdx @@ -117,7 +117,8 @@ At this point, the `PreparedStatement` has parsed and planned the `INSERT` state The `AddEmployee()` method prompts the user for an employee ID and name and calls `setObject()` with the values supplied by the user: ```text - stmt.setObject(1,new Integer(c.readLine("ID:"))); stmt.setObject(2, c.readLine("Name:")); + stmt.setObject(1,new Integer(c.readLine("ID:"))); + stmt.setObject(2, c.readLine("Name:")); ``` And then asks the PreparedStatement object to execute the statement: