summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/jdbc2/Jdbc2Clob.java
blob: 71de2f5433d1f3d7cfbfaa5075b29e1dcabbafd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.postgresql.jdbc2;


public class Jdbc2Clob extends AbstractJdbc2Clob implements java.sql.Clob
{

	public Jdbc2Clob(org.postgresql.PGConnection conn, int oid) throws java.sql.SQLException
	{
		super(conn, oid);
	}

}