postgres/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3CallableStatement.java
2002-09-06 21:23:06 +00:00

16 lines
308 B
Java

package org.postgresql.jdbc3;
import java.sql.*;
public class Jdbc3CallableStatement extends org.postgresql.jdbc3.AbstractJdbc3Statement implements java.sql.CallableStatement
{
public Jdbc3CallableStatement(Jdbc3Connection connection, String sql) throws SQLException
{
super(connection, sql);
}
}