diff options
author | Barry Lind <barry@xythos.com> | 2003-02-09 23:14:55 +0000 |
---|---|---|
committer | Barry Lind <barry@xythos.com> | 2003-02-09 23:14:55 +0000 |
commit | abcec0c12513ff6ec87cb946bf66a78169acde9c (patch) | |
tree | 2ea2cf6905f904366a587f3ff24796619064a4a8 /src/interfaces/jdbc/org/postgresql/errors.properties | |
parent | 39b7ec330923b5a2746720101fbd83c1dd418aea (diff) | |
download | postgresql-abcec0c12513ff6ec87cb946bf66a78169acde9c.tar.gz |
Better error message on character set mismatches during conversion to unicode.
Also applied patch from Lars Stenberg to make callable statements use the form
select * from func() when running against a 7.3 server instead of select func() to allow for set returning functions to be called.
Modified Files:
jdbc/org/postgresql/errors.properties
jdbc/org/postgresql/core/Encoding.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/errors.properties')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/errors.properties | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/errors.properties b/src/interfaces/jdbc/org/postgresql/errors.properties index ff872664f4..ca649b06c2 100644 --- a/src/interfaces/jdbc/org/postgresql/errors.properties +++ b/src/interfaces/jdbc/org/postgresql/errors.properties @@ -5,6 +5,7 @@ postgresql.con.auth:The authentication type {0} is not supported. Check that you postgresql.con.authfail:An error occured while getting the authentication request. postgresql.con.backend:Backend start-up failed: {0} postgresql.con.call:Callable Statements are not supported at this time. +postgresql.con.invalidchar:Invalid character data was found. This is most likely caused by stored data containing characters that are invalid for the character set the database was created in. The most common example of this is storing 8bit data in a SQL_ASCII database. postgresql.con.closed:Connection is closed. Operation is not permitted. postgresql.con.creobj:Failed to create object for {0} {1} postgresql.con.failed:The connection attempt failed because {0} |