Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
9e2a980f
Commit
9e2a980f
authored
May 29, 2003
by
Barry Lind
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied patch from Fernando Nasser to fix up small type error
parent
ece84bf8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
...ces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
+2
-2
src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
...ces/jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
+2
-2
No files found.
src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
View file @
9e2a980f
...
...
@@ -25,7 +25,7 @@ import java.sql.Timestamp;
import
java.sql.Types
;
import
java.util.Vector
;
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Statement.java,v 1.2
3 2003/05/29 04:48:33
barry Exp $
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Statement.java,v 1.2
4 2003/05/29 04:52:44
barry Exp $
* This class defines methods of the jdbc1 specification. This class is
* extended by org.postgresql.jdbc2.AbstractJdbc2Statement which adds the jdbc2
* methods. The real Statement class (for jdbc1) is org.postgresql.jdbc1.Jdbc1Statement
...
...
@@ -144,7 +144,7 @@ public abstract class AbstractJdbc1Statement implements BaseStatement
v
.
addElement
(
l_sql
.
substring
(
lastParmEnd
,
l_sql
.
length
()));
m_sqlFragments
=
new
String
[
v
.
size
()];
m_binds
=
new
String
[
v
.
size
()
-
1
];
m_binds
=
new
Object
[
v
.
size
()
-
1
];
m_bindTypes
=
new
String
[
v
.
size
()
-
1
];
for
(
i
=
0
;
i
<
m_sqlFragments
.
length
;
++
i
)
...
...
src/interfaces/jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
View file @
9e2a980f
...
...
@@ -9,7 +9,7 @@ import org.postgresql.Driver;
import
org.postgresql.largeobject.*
;
import
org.postgresql.util.PSQLException
;
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2Statement.java,v 1.1
3 2003/03/14 01:21:47
barry Exp $
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2Statement.java,v 1.1
4 2003/05/29 04:52:44
barry Exp $
* This class defines methods of the jdbc2 specification. This class extends
* org.postgresql.jdbc1.AbstractJdbc1Statement which provides the jdbc1
* methods. The real Statement class (for jdbc2) is org.postgresql.jdbc2.Jdbc2Statement
...
...
@@ -175,7 +175,7 @@ public abstract class AbstractJdbc2Statement extends org.postgresql.jdbc1.Abstra
l_newSqlFragments
=
new
String
[
m_sqlFragments
.
length
];
System
.
arraycopy
(
m_sqlFragments
,
0
,
l_newSqlFragments
,
0
,
m_sqlFragments
.
length
);
}
Object
[]
l_newBinds
=
new
String
[
m_binds
.
length
];
Object
[]
l_newBinds
=
new
Object
[
m_binds
.
length
];
System
.
arraycopy
(
m_binds
,
0
,
l_newBinds
,
0
,
m_binds
.
length
);
String
[]
l_newBindTypes
=
new
String
[
m_bindTypes
.
length
];
System
.
arraycopy
(
m_bindTypes
,
0
,
l_newBindTypes
,
0
,
m_bindTypes
.
length
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment