Advances samples - hudec/sql-processor GitHub Wiki
###The advanced JDBC based application with generated POJO, DAO, META SQL
- https://github.com/hudec/sql-processor/tree/master/sql-samples/simple-jdbc-crud
- control directives can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-crud/src/main/resources/definitions.model
- generated POJO can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-crud/src/main/resources/pojo.model
- generated DAO can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-crud/src/main/resources/dao.model
- control directives can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-crud/src/main/resources/definitions.meta
- generated META SQL statements can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-crud/src/main/resources/statements.meta
###The advanced Spring based application with generated POJO, DAO, META SQL, DAO interface is separated from implementation
- https://github.com/hudec/sql-processor/tree/master/sql-samples/simple-jdbc-dao
- control directives can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-dao/src/main/resources/definitions.model
- generated POJO can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-dao/src/main/resources/pojo.model
- generated DAO can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-dao/src/main/resources/dao.model
- control directives can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-dao/src/main/resources/definitions.meta
- generated META SQL statements can be seen at https://github.com/hudec/sql-processor/blob/master/sql-samples/simple-jdbc-dao/src/main/resources/statements.meta