From 9fe2f4f9dddd20488efe32a47ae34b571ef628c9 Mon Sep 17 00:00:00 2001 From: Kazuki Shimizu Date: Tue, 5 May 2015 21:21:06 +0900 Subject: [PATCH] Fixes bad grammar in reference document Issue: SPR-12981 --- src/asciidoc/data-access.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/asciidoc/data-access.adoc b/src/asciidoc/data-access.adoc index 866437226d..4ff134e0e1 100644 --- a/src/asciidoc/data-access.adoc +++ b/src/asciidoc/data-access.adoc @@ -4379,11 +4379,11 @@ The next example shows how to create and insert a BLOB. Later you will see how t it back from the database. This example uses a `JdbcTemplate` and an implementation of the -`AbstractLobCreatingPreparedStatementCallbac` `k`. It implements one method, +`AbstractLobCreatingPreparedStatementCallback`. It implements one method, `setValues`. This method provides a `LobCreator` that you use to set the values for the LOB columns in your SQL insert statement. -For this example we assume that there is a variable, `lobHandle` `r`, that already is +For this example we assume that there is a variable, `lobHandler`, that already is set to an instance of a `DefaultLobHandler`. You typically set this value through dependency injection. @@ -4414,7 +4414,7 @@ dependency injection. <3> Using the method `setBlobAsBinaryStream`, pass in the contents of the BLOB. Now it's time to read the LOB data from the database. Again, you use a `JdbcTemplate` -with the same instance variable `l` `obHandler` and a reference to a `DefaultLobHandler`. +with the same instance variable `lobHandler` and a reference to a `DefaultLobHandler`. [source,java,indent=0] [subs="verbatim,quotes"] -- GitLab