]> granicus.if.org Git - postgresql/blob - src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3PreparedStatement.java
62d33925d8238929b25b894984725e4f3b9356a7
[postgresql] / src / interfaces / jdbc / org / postgresql / jdbc3 / Jdbc3PreparedStatement.java
1 package org.postgresql.jdbc3;
2
3
4 import java.sql.*;
5
6 public class Jdbc3PreparedStatement extends org.postgresql.jdbc3.AbstractJdbc3Statement implements java.sql.PreparedStatement
7 {
8
9         public Jdbc3PreparedStatement(Jdbc3Connection connection, String sql) throws SQLException
10         {
11                 super(connection, sql);
12         }
13
14         public java.sql.ResultSet createResultSet (org.postgresql.Field[] fields, java.util.Vector tuples, String status, int updateCount, long insertOID, boolean binaryCursor) throws SQLException
15         {
16                 return new Jdbc3ResultSet(this, fields, tuples, status, updateCount, insertOID, binaryCursor);
17         }
18
19 }
20