blob: b065b5722461557e454bc68746ed02ec94822614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
}
}
|