]> granicus.if.org Git - postgresql/commitdiff
added messages for updateable result sets
authorDave Cramer <davec@fastcrypt.com>
Thu, 13 Jun 2002 13:43:02 +0000 (13:43 +0000)
committerDave Cramer <davec@fastcrypt.com>
Thu, 13 Jun 2002 13:43:02 +0000 (13:43 +0000)
src/interfaces/jdbc/org/postgresql/errors.properties

index 2720939ad632eba22a784032d8d347534d529ca5..c2e529ee999fffc33421f0e022f20478d9f022bf 100644 (file)
@@ -75,3 +75,11 @@ postgresql.stream.toomuch:Too much data was received.
 postgresql.unusual:Something unusual has occured to cause the driver to fail. Please report this exception: {0}
 postgresql.unimplemented:This method is not yet implemented.
 postgresql.unexpected:An unexpected result was returned by a query.
+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.
+postgresql.updateable.oninsertrow:Can not call deleteRow() when on insert row
+postgresql.updateable.emptydelete:Can't deleteRow() on empty result set
+postgresql.updateable.beforestartdelete:Before start of result set. Can not call deleteRow().
+postgresql.updateable.afterlastdelete:After end of result set. Can not call deleteRow().
+postgresql.updateable.notoninsertrow:Not on insert row.
+postgresql.updateable.inputstream:Input Stream is null.
+postgresql.updateable.ioerror:Input Stream Error.