You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vertx-sql-client-templates/src/main/asciidoc/index.adoc
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ wrapper for a `PreparedQuery`.
40
40
{@link examples.TemplateExamples#queryExample}
41
41
----
42
42
43
-
When you need to perform an insert or update operation and you do not care of the result, you can use {@link io.vertx.sqlclient.templates.SqlTemplate#forUpdate} instead:
43
+
When you need to perform an insert or update operation, and you do not care of the result, you can use {@link io.vertx.sqlclient.templates.SqlTemplate#forUpdate} instead:
44
44
45
45
[source,$lang]
46
46
----
@@ -52,7 +52,7 @@ When you need to perform an insert or update operation and you do not care of th
52
52
The template syntax uses `#{XXX}` syntax where `XXX` is a valid https://docs.oracle.com/javase/specs/jls/se8/html/jls-3.html#jls-3.8[java identifier] string
53
53
(without the keyword restriction).
54
54
55
-
You can use the backslash char `\` to escape any `#` character, i.e `\#{foo}` will be interpreted as `#{foo}` string without a `foo` parameter.
55
+
You can use the backslash char `\` to escape any `#` character, i.e. `\#{foo}` will be interpreted as `#{foo}` string without a `foo` parameter.
56
56
57
57
== Row mapping
58
58
@@ -151,7 +151,7 @@ Row mapping is achieved by creating a `JsonObject` using the row key/value pairs
0 commit comments