diff options
author | Eduardo Julian | 2022-06-12 00:38:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-12 00:38:20 -0400 |
commit | b48ea68a83d01903554c7696c77eedaaf1035680 (patch) | |
tree | c342d8094c3158de16526f874ca9624418cd2dd2 /stdlib/source/library/lux/world/db/jdbc/input.lux | |
parent | 7abf2d0ac55c229a8793bbff31f132596ffcb275 (diff) |
De-sigil-ification: suffix : [Part 3]
Diffstat (limited to 'stdlib/source/library/lux/world/db/jdbc/input.lux')
-rw-r--r-- | stdlib/source/library/lux/world/db/jdbc/input.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/world/db/jdbc/input.lux b/stdlib/source/library/lux/world/db/jdbc/input.lux index cf29414bd..19272665f 100644 --- a/stdlib/source/library/lux/world/db/jdbc/input.lux +++ b/stdlib/source/library/lux/world/db/jdbc/input.lux @@ -14,7 +14,7 @@ (import java/lang/String) -(template [<class>] +(with_template [<class>] [(import <class> (new [long]))] @@ -22,7 +22,7 @@ ) (`` (import java/sql/PreparedStatement - (~~ (template [<name> <type>] + (~~ (with_template [<name> <type>] [(<name> [int <type>] "try" void)] [setBoolean boolean] @@ -71,7 +71,7 @@ (function (_ value context) {try.#Success context})) -(template [<function> <type> <setter>] +(with_template [<function> <type> <setter>] [(def: .public <function> (Input <type>) (function (_ value [idx statement]) @@ -93,7 +93,7 @@ [bytes Binary java/sql/PreparedStatement::setBytes] ) -(template [<function> <setter> <constructor>] +(with_template [<function> <setter> <constructor>] [(def: .public <function> (Input Instant) (function (_ value [idx statement]) |