From 3f857600b2f3c06c55c3def91deb623d0a759ab6 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 13 Jun 2002 13:43:02 +0000 Subject: [PATCH] added messages for updateable result sets --- src/interfaces/jdbc/org/postgresql/errors.properties | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/interfaces/jdbc/org/postgresql/errors.properties b/src/interfaces/jdbc/org/postgresql/errors.properties index 2720939ad6..c2e529ee99 100644 --- a/src/interfaces/jdbc/org/postgresql/errors.properties +++ b/src/interfaces/jdbc/org/postgresql/errors.properties @@ -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. -- 2.40.0