From 5be0db9259ad3a839ece1164e75144cadf6c0a2b Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 22 Mar 2020 20:32:45 +0100 Subject: [PATCH] Consistently refer to `t_actor` table --- src/docs/asciidoc/data-access.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/asciidoc/data-access.adoc b/src/docs/asciidoc/data-access.adoc index a8d900f56c..beef7b7235 100644 --- a/src/docs/asciidoc/data-access.adoc +++ b/src/docs/asciidoc/data-access.adoc @@ -2848,13 +2848,13 @@ The following example deletes an entry: .Java ---- this.jdbcTemplate.update( - "delete from actor where id = ?", + "delete from t_actor where id = ?", Long.valueOf(actorId)); ---- [source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"] .Kotlin ---- - jdbcTemplate.update("delete from actor where id = ?", actorId.toLong()) + jdbcTemplate.update("delete from t_actor where id = ?", actorId.toLong()) ---- [[jdbc-JdbcTemplate-examples-other]] @@ -3812,7 +3812,7 @@ interface, `BatchPreparedStatementSetter`, and passing that implementation in as in your `batchUpdate` method call. You can use the `getBatchSize` method to provide the size of the current batch. You can use the `setValues` method to set the values for the parameters of the prepared statement. This method is called the number of times that you -specified in the `getBatchSize` call. The following example updates the `actor` table +specified in the `getBatchSize` call. The following example updates the `t_actor` table based on entries in a list, and the entire list is used as the batch: [source,java,indent=0,subs="verbatim,quotes",role="primary"]