HHH-6082 - Incorporate EntityManager documentation into main dev guide
This commit is contained in:
parent
102c31497b
commit
591364409e
|
@ -3,7 +3,16 @@
|
||||||
<!ENTITY % BOOK_ENTITIES SYSTEM "../../Hibernate_Development_Guide.ent">
|
<!ENTITY % BOOK_ENTITIES SYSTEM "../../Hibernate_Development_Guide.ent">
|
||||||
%BOOK_ENTITIES;
|
%BOOK_ENTITIES;
|
||||||
]>
|
]>
|
||||||
|
|
||||||
<chapter>
|
<chapter>
|
||||||
<title>Native-SQL</title>
|
<title>Native SQL Queries</title>
|
||||||
<para></para>
|
|
||||||
|
<para>
|
||||||
|
You may also express queries in the native SQL dialect of your database. This is useful if you
|
||||||
|
want to utilize database specific features such as query hints or the CONNECT BY option in Oracle.
|
||||||
|
It also provides a clean migration path from a direct SQL/JDBC based application to Hibernate/JPA.
|
||||||
|
Hibernate also allows you to specify handwritten SQL (including stored procedures) for all
|
||||||
|
create, update, delete, and load operations.
|
||||||
|
</para>
|
||||||
|
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
Loading…
Reference in New Issue