mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
287 B
16 lines
287 B
|
24 years ago
|
package org.postgresql.jdbc2;
|
||
|
|
|
||
|
|
|
||
|
|
import java.sql.*;
|
||
|
|
|
||
|
|
public class Jdbc2CallableStatement extends AbstractJdbc2Statement implements java.sql.CallableStatement
|
||
|
|
{
|
||
|
|
|
||
|
|
public Jdbc2CallableStatement(Jdbc2Connection connection, String sql) throws SQLException
|
||
|
|
{
|
||
|
|
super(connection, sql);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|