提交 d0aeb181 authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 570437e8
...@@ -1721,9 +1721,12 @@ public class ErrorCode { ...@@ -1721,9 +1721,12 @@ public class ErrorCode {
/** /**
* The error with code <code>90127</code> is thrown when * The error with code <code>90127</code> is thrown when
* trying to update or delete a row in a result set if the result set is * trying to update or delete a row in a result set if the result set is
* not updatable. Result sets are only updatable if the statement was * not updatable. Result sets are only updatable if:
* created with updatable concurrency, and if the result set contains * the statement was created with updatable concurrency;
* all columns of the primary key or of a unique index of a table. * all columns of the result set are from the same table;
* the table is a data table (not a system table or view);
* all columns of the primary key or any unique index are included;
* all columns of the result set are columns of that table.
*/ */
public static final int RESULT_SET_NOT_UPDATABLE = 90127; public static final int RESULT_SET_NOT_UPDATABLE = 90127;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论