Skip to content

Commit 5be0db9

Browse files
committed
Consistently refer to t_actor table
1 parent b52136d commit 5be0db9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/docs/asciidoc/data-access.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2848,13 +2848,13 @@ The following example deletes an entry:
28482848
.Java
28492849
----
28502850
this.jdbcTemplate.update(
2851-
"delete from actor where id = ?",
2851+
"delete from t_actor where id = ?",
28522852
Long.valueOf(actorId));
28532853
----
28542854
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
28552855
.Kotlin
28562856
----
2857-
jdbcTemplate.update("delete from actor where id = ?", actorId.toLong())
2857+
jdbcTemplate.update("delete from t_actor where id = ?", actorId.toLong())
28582858
----
28592859

28602860
[[jdbc-JdbcTemplate-examples-other]]
@@ -3812,7 +3812,7 @@ interface, `BatchPreparedStatementSetter`, and passing that implementation in as
38123812
in your `batchUpdate` method call. You can use the `getBatchSize` method to provide the size of
38133813
the current batch. You can use the `setValues` method to set the values for the parameters of
38143814
the prepared statement. This method is called the number of times that you
3815-
specified in the `getBatchSize` call. The following example updates the `actor` table
3815+
specified in the `getBatchSize` call. The following example updates the `t_actor` table
38163816
based on entries in a list, and the entire list is used as the batch:
38173817

38183818
[source,java,indent=0,subs="verbatim,quotes",role="primary"]

0 commit comments

Comments
 (0)