We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cdf723 commit 01cc344Copy full SHA for 01cc344
src/interfaces/jdbc/org/postgresql/jdbc1/ResultSet.java
@@ -190,7 +190,7 @@ public boolean getBoolean(int columnIndex) throws SQLException
190
if (s != null)
191
{
192
int c = s.charAt(0);
193
- return ((c == 't') || (c == 'T'));
+ return ((c == 't') || (c == 'T') || (c == '1'));
194
}
195
return false; // SQL NULL
196
src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java
@@ -198,7 +198,7 @@ public boolean getBoolean(int columnIndex) throws SQLException
198
199
200
201
202
203
204
0 commit comments