<div dir="ltr">One of the examples in the String Template JEPs, and a stated motivating factor behind its design, is SQL. Template processors are objects so that use cases like constructing SQL statements aren't injection prone.<br><br>The questions I want to pose are:<br><br>* Should <font face="monospace">java.sql</font><font face="arial, sans-serif"> provide an implementation of </font><font face="monospace">TemplateProcessor</font><br><font face="arial, sans-serif">* Where should that implementation live?</font><br><font face="arial, sans-serif">* What, exactly, should be the translation strategy.</font><br><br><font face="arial, sans-serif">The reason I think this isn't an obvious yes and ask that last question is this.<br></font><br>Say this is some user's code.<br><br><font face="monospace">try (var conn = ds.getConnection();<br>     var stmt = conn.prepareStatement("""<br>         SELECT <a href="http://user.name">user.name</a><br>         WHERE user.height > ? AND user.width < ?<br>         """)) {<br>    stmt.setInt(1, height);</font><br style="font-family:monospace"><span style="font-family:monospace">    stmt.setInt(2, width);<br>    var rs = stmt.executeQuery();<br></span><font face="monospace">    process(rs);</font><br><font face="monospace">}</font><br><br><font face="arial, sans-serif">The transliteration to string templates would be something like<br><br></font><font face="monospace">try (var conn = ds.getConnection();<br>     var stmt = conn."""<br>         SELECT <a href="http://user.name">user.name</a><br>         WHERE user.height > \{height} AND user.width < \{width}<br>         """)) {</font><span style="font-family:monospace"><br>    var rs = stmt.executeQuery();<br></span><font face="monospace">    process(rs);</font><br><font face="monospace">}<br></font><font face="arial, sans-serif"><br>Whether Connection implements TemplateProcessor directly or its something that you wrap a connection with is somewhat immaterial.<br><br>How should we handle "partial templating"?<br><br></font><font face="monospace">try (var conn = ds.getConnection();<br>     var stmt = conn."""<br>         SELECT <a href="http://user.name">user.name</a><br>         WHERE user.height > ? AND user.width < \{width}<br>         """)) {</font><span style="font-family:monospace"><br>    var rs = stmt.executeQuery();<br>    rs.setInt(1, height);<br></span><font face="monospace">    process(rs);</font><br><font face="monospace">}<br></font><font face="arial, sans-serif"><br>Or<br><br></font><font face="monospace">try (var conn = ds.getConnection();<br>     var stmt = conn."""<br>         SELECT <a href="http://user.name">user.name</a><br>         WHERE user.height > \{height} AND user.width < ?<br>         """)) {</font><span style="font-family:monospace"><br>    var rs = stmt.executeQuery();<br>    rs.setInt(2, width);<br></span><font face="monospace">    process(rs);</font><br><font face="monospace">}<br></font><font face="arial, sans-serif"><br>Is replacing every substitution with </font><font face="monospace">?</font><font face="arial, sans-serif"> and calling </font><font face="monospace">set*</font><font face="arial, sans-serif"> is enough? How could it be known, without parsing the specific sql dialect, what index to use for the parameter?<br><br></font><font face="monospace">try (var conn = ds.getConnection();<br>     var stmt = conn."""<br>         SELECT <a href="http://user.name">user.name</a><br>         WHERE <a href="http://user.name">user.name</a> <> '???' <br>             AND user.height > ? <br>             AND user.width < \{width}<br>         """)) {</font><span style="font-family:monospace"><br>    var rs = stmt.executeQuery();<br>    rs.setInt(1, height);<br></span><font face="monospace">    process(rs);</font><br><font face="monospace">}</font><font face="arial, sans-serif"><br></font><div><br>(this seems more library design than language design, hence I sent it here. I can forward to amber-dev if that is better)</div></div>