aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3CallableStatement.java
blob: eef5bd4fbc679e583b5799960cdc4fcfb0361ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
	}
    
}