{code:java}/** * Extension point for rendering parameter markers into SQL strings for PreparedStatements. * ... */ interface ParameterMarkerStrategy { /** * Create a parameter marker for the parameter at the given position * * @param The 1-based position of the parameter in the statement */ String createParameterMarker(int position); }{code} |
|