org.firebirdsql.jdbc.oo.OOStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaybird-jdk15 Show documentation
Show all versions of jaybird-jdk15 Show documentation
JDBC Driver for the Firebird RDBMS
package org.firebirdsql.jdbc.oo;
import java.sql.SQLException;
import org.firebirdsql.gds.impl.GDSHelper;
import org.firebirdsql.jdbc.*;
import org.firebirdsql.jdbc.FBObjectListener.StatementListener;
public class OOStatement extends FBStatement {
public OOStatement(GDSHelper c, int rsType, int rsConcurrency,
int rsHoldability, StatementListener statementListener)
throws SQLException {
super(c, rsType, rsConcurrency, rsHoldability, statementListener);
}
public void completeStatement() throws SQLException {
// workaround - do not close the result set, OpenOffice gets crazy
if (!completed) notifyStatementCompleted();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy