Skip to content

Commit 3f85760

Browse files
author
Dave Cramer
committed
added messages for updateable result sets
1 parent 14f72b9 commit 3f85760

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/interfaces/jdbc/org/postgresql/errors.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,11 @@ postgresql.stream.toomuch:Too much data was received.
7575
postgresql.unusual:Something unusual has occured to cause the driver to fail. Please report this exception: {0}
7676
postgresql.unimplemented:This method is not yet implemented.
7777
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.
85+
postgresql.updateable.ioerror:Input Stream Error.

0 commit comments

Comments
 (0)