You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/interfaces/jdbc/org/postgresql/errors.properties
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,3 +75,11 @@ postgresql.stream.toomuch:Too much data was received.
75
75
postgresql.unusual:Something unusual has occured to cause the driver to fail. Please report this exception: {0}
76
76
postgresql.unimplemented:This method is not yet implemented.
77
77
postgresql.unexpected:An unexpected result was returned by a query.
78
+
postgresql.updateable.notupdateable:Result Set not updateable. The query that generated this result set must select only one table, and must select all primary keys from that table. See the JDBC 2.1 API Specification, section 5.6 for more details.
79
+
postgresql.updateable.oninsertrow:Can not call deleteRow() when on insert row
80
+
postgresql.updateable.emptydelete:Can't deleteRow() on empty result set
81
+
postgresql.updateable.beforestartdelete:Before start of result set. Can not call deleteRow().
82
+
postgresql.updateable.afterlastdelete:After end of result set. Can not call deleteRow().
83
+
postgresql.updateable.notoninsertrow:Not on insert row.
84
+
postgresql.updateable.inputstream:Input Stream is null.