Add jOOQ sample application

See gh-2804
This commit is contained in:
Phillip Webb
2015-06-22 20:15:09 -07:00
parent a08b09563b
commit ab1cc829c1
22 changed files with 2385 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
INSERT INTO language VALUES (1, 'EN', 'English');
INSERT INTO author VALUES (1, 'Greg', 'Turnquest', '1804-09-17', 1804, 1);
INSERT INTO author VALUES (2, 'Craig', 'Walls', '1804-09-18', 1804, 1);
INSERT INTO book VALUES (1, 1, 'Learning Spring Boot', 2015, 1);
INSERT INTO book VALUES (2, 2, 'Spring Boot in Action', 2015, 1);
INSERT INTO book_store VALUES ('Barnes & Noble');
INSERT INTO book_to_book_store VALUES ('Barnes & Noble', 1, 10);
INSERT INTO book_to_book_store VALUES ('Barnes & Noble', 2, 3);