Applied patch for jdbc from Kim Ho at RedHat to more correctly deal with boolean values

Modified Files:
 	jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
This commit is contained in:
Barry Lind 2003-09-17 07:00:24 +00:00
parent 292048f186
commit c020d67bc6
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
* Copyright (c) 2003, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1ResultSet.java,v 1.18 2003/09/13 04:02:15 barry Exp $
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1ResultSet.java,v 1.19 2003/09/17 07:00:24 barry Exp $
*
*-------------------------------------------------------------------------
*/
@ -797,8 +797,8 @@ public abstract class AbstractJdbc1ResultSet implements BaseResultSet
{
if (s != null)
{
int c = s.charAt(0);
return ((c == 't') || (c == 'T') || (c == '1'));
s = s.trim();
return (s.equalsIgnoreCase("true") || s.equals("1") || s.equalsIgnoreCase("t"));
}
return false; // SQL NULL
}