mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Second phase of restructuring to add jdbc3 support.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package org.postgresql.jdbc1;
|
||||
|
||||
|
||||
import java.sql.*;
|
||||
|
||||
public class Jdbc1PreparedStatement extends AbstractJdbc1Statement implements PreparedStatement
|
||||
{
|
||||
|
||||
public Jdbc1PreparedStatement(Jdbc1Connection connection, String sql) throws SQLException
|
||||
{
|
||||
super(connection, sql);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user