1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-27 07:42:10 +03:00

Second phase of restructuring to add jdbc3 support.

This commit is contained in:
Barry Lind
2002-07-24 22:08:45 +00:00
parent 43515ba3f8
commit 8d600a7d1f
13 changed files with 1073 additions and 1951 deletions

View File

@@ -0,0 +1,15 @@
package org.postgresql.jdbc2;
import java.sql.*;
public class Jdbc2PreparedStatement extends AbstractJdbc2Statement implements java.sql.PreparedStatement
{
public Jdbc2PreparedStatement(Jdbc2Connection connection, String sql) throws SQLException
{
super(connection, sql);
}
}