@@ -31,7 +31,7 @@ Runtime environment
3131Which version of JRE does Doma support?
3232---------------------------------------
3333
34- JRE 8, 9, 10, 11, 12, 13 and 14 .
34+ JRE 8 and above .
3535
3636Which libraries are required for Doma to work?
3737----------------------------------------------
@@ -48,7 +48,7 @@ Development environment
4848Which version of JDK does Doma support?
4949---------------------------------------
5050
51- JDK 8, 9, 10, 11, 12, 13 and 14 .
51+ JDK 8 and above .
5252
5353Which IDE do you recommend?
5454---------------------------
@@ -105,30 +105,31 @@ Does Doma generate SQL statements?
105105
106106Yes, Doma generates the following statements:
107107
108+ - SELECT
108109- INSERT
109110- DELETE
110111- UPDATE
111112- Stored procedure call
112113- Stored function call
113114
114- Doma doesn't generate SELECT statements
115- but executes arbitrary SELECT statements and maps the results to the Java objects.
116-
117- See also :doc: `query/index ` for detailed information.
118-
119115How are dynamic SQL statements executed?
120116----------------------------------------
121117
122- Dynamic SQL statements are built by directives that are represented by the SQL comments.
118+ There are two ways:
119+
120+ * The SQL Templates.
121+ * The Criteria API.
123122
124- See also :doc: `sql ` for detail information.
123+ See :doc: `sql ` and :doc: ` criteria-api ` for detail information.
125124
126125Does Doma map database relationships such as one-to-one and one-to-many to Java objects?
127126----------------------------------------------------------------------------------------
128127
129- No.
128+ Yes.
129+
130+ Doma provides the Criteria API to map database relationships to Java entities.
130131
131- Doma only maps each row of the SQL result set to a Java entity instance .
132+ See :ref: ` criteria_associate ` for detail information .
132133
133134Does Doma provide a JDBC connection pooling feature?
134135----------------------------------------------------
0 commit comments