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:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user