Skip to content
Snippets Groups Projects
Commit ce35ce91 authored by Barry Lind's avatar Barry Lind
Browse files

Fix a stupid cut and paste error from the commit last night.

 Modified Files:
  Tag: REL7_3_STABLE
 	AbstractJdbc2Statement.java
parent e994389d
No related branches found
Tags
No related merge requests found
...@@ -8,7 +8,7 @@ import java.util.Vector; ...@@ -8,7 +8,7 @@ import java.util.Vector;
import org.postgresql.largeobject.*; import org.postgresql.largeobject.*;
import org.postgresql.util.PSQLException; import org.postgresql.util.PSQLException;
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2Statement.java,v 1.8.2.1 2002/11/20 07:54:27 barry Exp $ /* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Attic/AbstractJdbc2Statement.java,v 1.8.2.2 2002/11/20 20:42:24 barry Exp $
* This class defines methods of the jdbc2 specification. This class extends * This class defines methods of the jdbc2 specification. This class extends
* org.postgresql.jdbc1.AbstractJdbc1Statement which provides the jdbc1 * org.postgresql.jdbc1.AbstractJdbc1Statement which provides the jdbc1
* methods. The real Statement class (for jdbc2) is org.postgresql.jdbc2.Jdbc2Statement * methods. The real Statement class (for jdbc2) is org.postgresql.jdbc2.Jdbc2Statement
...@@ -92,9 +92,9 @@ public abstract class AbstractJdbc2Statement extends org.postgresql.jdbc1.Abstra ...@@ -92,9 +92,9 @@ public abstract class AbstractJdbc2Statement extends org.postgresql.jdbc1.Abstra
} }
//restore state of statement //restore state of statement
String[] m_sqlFragments = l_origSqlFragments; m_sqlFragments = l_origSqlFragments;
Object[] m_binds = l_origBinds; m_binds = l_origBinds;
String[] m_bindTypes = l_origBindTypes; m_bindTypes = l_origBindTypes;
} }
catch (SQLException e) catch (SQLException e)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment