Consistently refer to `t_actor` table

This commit is contained in:
Sam Brannen 2020-03-22 20:32:45 +01:00
parent b52136dfa5
commit 5be0db9259
1 changed files with 3 additions and 3 deletions

View File

@ -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"]