summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java
blob: 7cd69103bd54313b6a347a9afadb3a1c22d42bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.postgresql.jdbc1;


import java.sql.*;

public class Jdbc1CallableStatement extends AbstractJdbc1Statement implements java.sql.CallableStatement
{

	public Jdbc1CallableStatement(Jdbc1Connection connection, String sql) throws SQLException
	{
		super(connection, sql);
	}
}