Skip to content

Commit

Permalink
[#8471] Add a link in the manual from simple-crud to settings-return-…
Browse files Browse the repository at this point in the history
…all-on-store
  • Loading branch information
lukaseder committed Apr 1, 2019
1 parent 3dcba4e commit c70eab4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Expand Up @@ -13086,6 +13086,7 @@ book2.store();]]></java><html>
<ul>
<li>jOOQ sets only modified values in <reference id="insert-statement" title="INSERT statements"/> or <reference id="update-statement" title="UPDATE statements"/>. This allows for default values to be applied to inserted records, as specified in CREATE TABLE DDL statements.</li>
<li>When store() performs an <reference id="insert-statement" title="INSERT statement"/>, jOOQ attempts to load any generated keys from the database back into the record. For more details, see the manual's section about <reference id="identity-values" title="IDENTITY values"/>.</li>
<li>In addition to loading identity values, store() can also be configured to refresh the entire record. See <reference id="settings-return-all-on-store" title="the returnAllOnUpdatableRecord setting"/> for details</li>
<li>When loading records from <reference id="pojos" title="POJOs"/>, jOOQ will assume the record is a new record. It will hence attempt to INSERT it.</li>
<li>When you activate <reference id="optimistic-locking" title="optimistic locking"/>, storing a record may fail, if the underlying database record has been changed in the mean time.</li>
</ul>
Expand Down
Expand Up @@ -13317,6 +13317,7 @@ book2.store();]]></java><html>
<ul>
<li>jOOQ sets only modified values in <reference id="insert-statement" title="INSERT statements"/> or <reference id="update-statement" title="UPDATE statements"/>. This allows for default values to be applied to inserted records, as specified in CREATE TABLE DDL statements.</li>
<li>When store() performs an <reference id="insert-statement" title="INSERT statement"/>, jOOQ attempts to load any generated keys from the database back into the record. For more details, see the manual's section about <reference id="identity-values" title="IDENTITY values"/>.</li>
<li>In addition to loading identity values, store() can also be configured to refresh the entire record. See <reference id="settings-return-all-on-store" title="the returnAllOnUpdatableRecord setting"/> for details</li>
<li>When loading records from <reference id="pojos" title="POJOs"/>, jOOQ will assume the record is a new record. It will hence attempt to INSERT it.</li>
<li>When you activate <reference id="optimistic-locking" title="optimistic locking"/>, storing a record may fail, if the underlying database record has been changed in the mean time.</li>
</ul>
Expand Down
Expand Up @@ -13540,6 +13540,7 @@ book2.store();]]></java><html>
<ul>
<li>jOOQ sets only modified values in <reference id="insert-statement" title="INSERT statements"/> or <reference id="update-statement" title="UPDATE statements"/>. This allows for default values to be applied to inserted records, as specified in CREATE TABLE DDL statements.</li>
<li>When store() performs an <reference id="insert-statement" title="INSERT statement"/>, jOOQ attempts to load any generated keys from the database back into the record. For more details, see the manual's section about <reference id="identity-values" title="IDENTITY values"/>.</li>
<li>In addition to loading identity values, store() can also be configured to refresh the entire record. See <reference id="settings-return-all-on-store" title="the returnAllOnUpdatableRecord setting"/> for details</li>
<li>When loading records from <reference id="pojos" title="POJOs"/>, jOOQ will assume the record is a new record. It will hence attempt to INSERT it.</li>
<li>When you activate <reference id="optimistic-locking" title="optimistic locking"/>, storing a record may fail, if the underlying database record has been changed in the mean time.</li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions jOOQ-manual/src/main/resources/org/jooq/web/manual-3.8.xml
Expand Up @@ -12730,6 +12730,7 @@ book2.store();]]></java><html>
<ul>
<li>jOOQ sets only modified values in <reference id="insert-statement" title="INSERT statements"/> or <reference id="update-statement" title="UPDATE statements"/>. This allows for default values to be applied to inserted records, as specified in CREATE TABLE DDL statements.</li>
<li>When store() performs an <reference id="insert-statement" title="INSERT statement"/>, jOOQ attempts to load any generated keys from the database back into the record. For more details, see the manual's section about <reference id="identity-values" title="IDENTITY values"/>.</li>
<li>In addition to loading identity values, store() can also be configured to refresh the entire record. See <reference id="settings-return-all-on-store" title="the returnAllOnUpdatableRecord setting"/> for details</li>
<li>When loading records from <reference id="pojos" title="POJOs"/>, jOOQ will assume the record is a new record. It will hence attempt to INSERT it.</li>
<li>When you activate <reference id="optimistic-locking" title="optimistic locking"/>, storing a record may fail, if the underlying database record has been changed in the mean time.</li>
</ul>
Expand Down
1 change: 1 addition & 0 deletions jOOQ-manual/src/main/resources/org/jooq/web/manual-3.9.xml
Expand Up @@ -12891,6 +12891,7 @@ book2.store();]]></java><html>
<ul>
<li>jOOQ sets only modified values in <reference id="insert-statement" title="INSERT statements"/> or <reference id="update-statement" title="UPDATE statements"/>. This allows for default values to be applied to inserted records, as specified in CREATE TABLE DDL statements.</li>
<li>When store() performs an <reference id="insert-statement" title="INSERT statement"/>, jOOQ attempts to load any generated keys from the database back into the record. For more details, see the manual's section about <reference id="identity-values" title="IDENTITY values"/>.</li>
<li>In addition to loading identity values, store() can also be configured to refresh the entire record. See <reference id="settings-return-all-on-store" title="the returnAllOnUpdatableRecord setting"/> for details</li>
<li>When loading records from <reference id="pojos" title="POJOs"/>, jOOQ will assume the record is a new record. It will hence attempt to INSERT it.</li>
<li>When you activate <reference id="optimistic-locking" title="optimistic locking"/>, storing a record may fail, if the underlying database record has been changed in the mean time.</li>
</ul>
Expand Down

0 comments on commit c70eab4

Please sign in to comment.