[jOOQ/jOOQ#17932] Outdated manual section "for update clause" regarding

SQL Server implementation
This commit is contained in:
Lukas Eder 2025-01-31 12:58:14 +01:00
parent 6ac0e77f73
commit 695151320b

View File

@ -1031,12 +1031,6 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
* <ul>
* <li>{@link SQLDialect#SQLITE}</li>
* </ul>
* <p>
* If your dialect does not support this clause, jOOQ will still render it,
* if you apply it to your query. This might then cause syntax errors
* reported either by your database or your JDBC driver.
* <p>
* You shouldn't combine this with {@link #setForShare(boolean)}
*
* @param forUpdate The flag's value
*/
@ -1196,12 +1190,6 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
* "http://www.postgresql.org/docs/9.0/static/sql-select.html#SQL-FOR-UPDATE-SHARE"
* >Postgres FOR UPDATE / FOR SHARE</a></li>
* </ul>
* <p>
* If your dialect does not support this clause, jOOQ will still render it,
* if you apply it to your query. This might then cause syntax errors
* reported either by your database or your JDBC driver.
* <p>
* You shouldn't combine this with {@link #setForUpdate(boolean)}
*
* @param forShare The flag's value
*/