aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/jdbc2/Jdbc2CallableStatement.java
blob: 46ff83a1e0c6e8fdaa2b3dedcba74924f8341e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.postgresql.jdbc2;


import java.sql.*;

public class Jdbc2CallableStatement extends org.postgresql.jdbc2.AbstractJdbc2Statement implements java.sql.CallableStatement
{

	public Jdbc2CallableStatement(Jdbc2Connection connection, String sql) throws SQLException
	{
		super(connection, sql);
	}

}