Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
4c943c87
Commit
4c943c87
authored
22 years ago
by
Barry Lind
Browse files
Options
Downloads
Patches
Plain Diff
A little cleanup. Removing an unnecessary method.
Modified Files: jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
parent
1cc55168
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
+9
-20
9 additions, 20 deletions
...ces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
with
9 additions
and
20 deletions
src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
+
9
−
20
View file @
4c943c87
...
...
@@ -15,7 +15,7 @@ import org.postgresql.util.PGbytea;
import
org.postgresql.util.PSQLException
;
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.1
3
2003/02/
04 09:20:10
barry Exp $
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2ResultSet.java,v 1.1
4
2003/02/
27 05:56:27
barry Exp $
* This class defines methods of the jdbc2 specification. This class extends
* org.postgresql.jdbc1.AbstractJdbc1ResultSet which provides the jdbc1
* methods. The real Statement class (for jdbc2) is org.postgresql.jdbc2.Jdbc2ResultSet
...
...
@@ -1261,22 +1261,6 @@ public abstract class AbstractJdbc2ResultSet extends org.postgresql.jdbc1.Abstra
}
private
int
_findColumn
(
String
columnName
)
{
int
i
;
final
int
flen
=
fields
.
length
;
for
(
i
=
0
;
i
<
flen
;
++
i
)
{
if
(
fields
[
i
].
getName
().
equalsIgnoreCase
(
columnName
))
{
return
(
i
+
1
);
}
}
return
-
1
;
}
/**
* Is this ResultSet updateable?
*/
...
...
@@ -1313,12 +1297,18 @@ public abstract class AbstractJdbc2ResultSet extends org.postgresql.jdbc1.Abstra
usingOID
=
false
;
int
oidIndex
=
_findColumn
(
"oid"
);
int
oidIndex
=
0
;
try
{
oidIndex
=
findColumn
(
"oid"
);
}
catch
(
SQLException
l_se
)
{
//Ignore if column oid isn't selected
}
int
i
=
0
;
// if we find the oid then just use it
//oidIndex will be >0 if the oid was in the select list
if
(
oidIndex
>
0
)
{
i
++;
...
...
@@ -1343,7 +1333,6 @@ public abstract class AbstractJdbc2ResultSet extends org.postgresql.jdbc1.Abstra
for
(;
rs
.
next
();
i
++
)
{
String
columnName
=
rs
.
getString
(
4
);
// get the columnName
int
index
=
findColumn
(
columnName
);
if
(
index
>
0
)
...
...
@@ -1413,7 +1402,7 @@ public abstract class AbstractJdbc2ResultSet extends org.postgresql.jdbc1.Abstra
while
(
columns
.
hasMoreElements
()
)
{
String
columnName
=
(
String
)
columns
.
nextElement
();
int
columnIndex
=
_
findColumn
(
columnName
)
-
1
;
int
columnIndex
=
findColumn
(
columnName
)
-
1
;
Object
valueObject
=
updateValues
.
get
(
columnName
);
if
(
valueObject
instanceof
NullObject
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment