提交 1df42bbd authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 6e13b867
...@@ -3372,6 +3372,7 @@ To get the row number after ordering and grouping, use a subquery. ...@@ -3372,6 +3372,7 @@ To get the row number after ordering and grouping, use a subquery.
"," ","
SELECT ROWNUM(), * FROM TEST; SELECT ROWNUM(), * FROM TEST;
SELECT ROWNUM(), * FROM (SELECT * FROM TEST ORDER BY NAME); SELECT ROWNUM(), * FROM (SELECT * FROM TEST ORDER BY NAME);
SELECT ID FROM (SELECT T.*, ROWNUM AS R FROM TEST T) WHERE R BETWEEN 2 AND 3;
" "
"Functions (System)","SCHEMA"," "Functions (System)","SCHEMA","
......
...@@ -64,13 +64,17 @@ auto-complete in the IDE and Javadoc and are supported. Type checking is perform ...@@ -64,13 +64,17 @@ auto-complete in the IDE and Javadoc and are supported. Type checking is perform
JaQu fully protects against SQL injection. JaQu fully protects against SQL injection.
</p> </p>
<p> <p>
JaQu is much smaller than persistence frameworks such as Hibernate. JaQu is more a replacement for JDBC than it is a replacement for tools like Hibernate.
With JaQu, you don't write SQL statements as Strings.
JaQu is much smaller and simpler than other persistence frameworks such as Hibernate,
but it also does not provide all the features of those.
Unlike iBatis and Hibernate, no XML or annotation based configuration is required; Unlike iBatis and Hibernate, no XML or annotation based configuration is required;
instead the configuration (if required at all) is done in pure Java, in the application itself. instead the configuration (if required at all) is done in pure Java, in the application itself.
</p> </p>
<p> <p>
JaQu does not require or contain any data caching mechanism. Like JDBC and iBatis, JaQu does not require or contain any data caching mechanism. Like JDBC and iBatis,
JaQu provides full control over when and what SQL statements are executed. JaQu provides full control over when and what SQL statements are executed
(but without having to write SQL statements as Strings).
</p> </p>
<h3>Restrictions</h3> <h3>Restrictions</h3>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论