tpquery/README.md

52 lines
1.3 KiB
Markdown
Raw Normal View History

2015-12-27 14:44:17 +00:00
FF-TPQuery
2015-06-19 17:18:16 +00:00
=========
2015-12-27 14:44:17 +00:00
FF-TPQuery is a java8 library providing templated prepared statements.
2015-06-19 17:18:16 +00:00
2015-06-20 15:24:08 +00:00
## Features
* Named parameters
* Include query parts
* Default values
* Extra parameter types like LIST and RAW
* QuerySets are nestable.
* Prepared statement cache if possibe.
* Multiple languages supported.
* Validation
2015-06-19 17:18:16 +00:00
## Installation
Add maven deps;
2015-06-20 15:33:09 +00:00
<dependency>
<groupId>net.forwardfire.tpquery</groupId>
2015-12-27 15:38:49 +00:00
<artifactId>ff-tpquery-store</artifactId>
2015-06-20 15:33:09 +00:00
<version>1.5.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
2015-06-19 17:18:16 +00:00
## Files in this package
2015-12-27 15:38:49 +00:00
* build.md - Developer build commands.
* license.txt - The license of tpquery.
* pom.xml - Maven specific build file.
* readme.md - This file.
* todo.md - Small todo list.
* src - site source.
* ff-tpquery-executor-jdbc - Jdbc executor implementation.
* ff-tpquery-executor-jpa - JPA executor implementation.
* ff-tpquery-store - The query store library.
2015-06-19 17:18:16 +00:00
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality. Style and test your code.
## Release History
2015-06-20 15:21:52 +00:00
### Version 1.5.0
2015-06-19 17:18:16 +00:00
* First public release
2015-06-20 15:21:52 +00:00
* fifth rewrite of idea.
2015-06-19 17:18:16 +00:00