Keep your SQL queries right on your waist!
Why make your life miserable with inlined SQL and the ugly mess of string concatenation?
Instead organize your queries your own way and grab 'em out of your fannypack when you need to use them!
- Add the fannypack dependency to your POM file.
<dependency>
<groupId>io.kowalski</groupId>
<artifactId>fannypack</artifactId>
<version>1.1.0</version>
</dependency>
- Rip out all that inlined SQL and organize it sanely in a good old-fashioned SQL file.
- Before each query in your file, add a comment that looks like this:
-- name: QueryNameHere
This library calls this type of comment a Name Marker
. You will use this name marker to retreive the query when your program requires it.
With this in mind, a simplistic inventory query will look like this:
-- name: DemoInventoryQuery
SELECT id, name, price FROM inventory;
FannyPack supports multiple queries per file, just label them with a comment like the one shown above.
Additionally, you can have comments, multi-line queries and placeholders just as you'd expect.
-- name: LongFakeUserOrderQuery
SELECT
id,
username,
email_address,
password_hash,
ip_address,
first_name,
last_name,
address,
company
FROM users u
INNER JOIN orders o ON u.id = orders.purchaser
-- Just a comment pointing out the placeholders on the line below.
WHERE o.orderedOn > ? AND o.orderedOn < ? AND o.itemCount = 4
ORDER BY o.OrderedOn DESC, u.last_name ASC;
-- name: CustomerCount
SELECT COUNT(*) FROM customer;
- Make a fannypack instance by passing in the SQL files you've created.
var fp = FannyPack.fill("src/test/resources/queries.sql");
// FannyPack::fill takes a var-args String parameter.
// Feel free to enumerate every SQL file you want to include in your pack
- Grab the query out of your pack and use it!
var q = fp.get("LongFakeUserOrderQuery");
- If you give two (or more) queries the same name, the last one parsed wins.
- This is just a dumb helper library. It doesn't do anything to help with SQL injection. Be sure to use the proper parameter binding you'd otherwise be using.
Replace FannyPack
with BumBag
in the above examples. You're welcome.