diff --git a/jOOQ-website/css/jooq.css b/jOOQ-website/css/jooq.css index a4a031a3ba..ae15397a80 100644 --- a/jOOQ-website/css/jooq.css +++ b/jOOQ-website/css/jooq.css @@ -247,4 +247,8 @@ div.screenshot { white-space: pre-wrap; word-wrap: break-word; text-align: center; +} + +.mono { + font-family: monospace; } \ No newline at end of file diff --git a/jOOQ-website/frame.php b/jOOQ-website/frame.php index 70b0984190..5c506f03c3 100644 --- a/jOOQ-website/frame.php +++ b/jOOQ-website/frame.php @@ -33,7 +33,7 @@ Home
jOOQ stands for Java Object Oriented Querying. It combines these essential features:
+jOOQ stands for Java Object Oriented Querying. It combines these essential features:
-+Before you go on and read the whole manual, there are a couple of interesting questions that you might want to consider: +
+ +
+Q: When I generate source code from MySQL, can I also use it on another database?
+A: Yes! The generated Java code will work for all supported databases, not only for the database driver that you used when you generated the code.
+
+Q: When I generate source code from my developer database, can I also use it on production?
+A: Yes! You can map your schema at code generation time or at run time. See the manual for details.
+
+Q: Can I use jOOQ without code generation?
+A: Yes! You can define tables, fields, conditions using Strings. See the manual for details.
+
+Q: Can I use jOOQ as a query builder and execute queries with Spring?
+A: Yes! This has been done by other users and will be documented soon. See this Stack Overflow question for details.
+