项目作者: wayerr

项目描述 :
a way to store sql templates in sql files for Java
高级语言: Java
项目地址: git://github.com/wayerr/sqlfiles.git
创建时间: 2017-11-17T11:31:19Z
项目社区:https://github.com/wayerr/sqlfiles

开源协议:Apache License 2.0

下载


SQL-Files

A SQL template engine for Java.

Note, library in development state, therefore API may be changed without backward capability.

Key features

  • place templates as valid SQL code in sql files
  • use template metadata from SQL comments
  • no dependencies

Format

Template tags is a usual SQL comments with marker symbol in begin. Currently we use #, @ and $ - symbols.
Each query template start as comment with # and name after it.
Field of template is defined as comments with @ at begin. Parameters will start with $, and may have ‘sample value’.
Its value will be removed at query generation, but can be used in query test and execution in sql editor.

  1. /*#queryName attrKey1=attrVal attrKey2="other val"*/
  2. select
  3. now(), /*@date title=Date javaType=java.util.Date*/
  4. 17843, --@weight type=Wight
  5. /*$id type=INT {*/123/*}*/,
  6. :parameter.name
  7. ;

So, this template engine declare following comment types:

  • #[name] [key]=[value]* - template header
  • @[name] type=[value] [key]=[value]* - template field, has predefined attribute: ‘type’ (sql type name)
  • $[name] type=[value] dir=[IN|OUT|INOUT] [key]=[value]* - template parameter, has predefined
    attributes: ‘type’ see field attribute with same name, ‘dir’ - one of IN|OUT|INOUT it a parameter direction.
    Sample value can be placed in braces like following: {*/sample value/*}*/, note that only multiline comments can
    support this syntax.
  • :parameter.name - usual simply way to mape parameters in prepared statements.
    Usable when you do not need to specify additional metadata.

Parser consume template and provide SqlTemplate object:

  1. {
  2. "name":"queryName",
  3. "attributes":{"attrKey2":"other val", "attrKey1":"attrVal"},
  4. "fields":[
  5. {
  6. "name":"date",
  7. "attributes":{
  8. "title":"Date",
  9. "javaType":"java.util.Date"
  10. }
  11. },
  12. {
  13. "name":"weight",
  14. "type":"Wight"
  15. }
  16. ],
  17. "params":[
  18. {
  19. "name":"id",
  20. "type":"INT",
  21. "direction":"IN"
  22. }
  23. ],
  24. "query":"select\n now(), \n 17843, \n ?\n ;"
  25. }

It may be used in any database access framework, in examples we show usage with usual JDBC.

See examples