Class ExtSqlParser

java.lang.Object
io.higson.runtime.provider.external.ExtSqlParser

public class ExtSqlParser extends Object
Parses sql template and creates jdbc-compliant sql statement ready to bind input values. For example, parsing this template: -- arg :

 select a,b from tab where a = :code and b < :limit
 
-- creates ExtSql with content: --

 select a,b from tab where a = ? and b < ?
 
-- and 2 args: [code, limit]
Author:
przemek hertel