All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.jdbd.vendor.stmt.Stmt Maven / Gradle / Ivy

There is a newer version: 0.12.7
Show newest version
package io.jdbd.vendor.stmt;

/**
 * 

* This interface representing object that wrap sql and parameter and option(eg: timeout). * The implementation of this interface is used by the implementation of {@link io.jdbd.statement.Statement} *
*

* This interface is a base interface of : *

    *
  • {@link StaticStmt}
  • *
  • {@link StaticBatchStmt}
  • *
  • {@link ParamStmt}
  • *
  • {@link ParamBatchStmt}
  • *
  • {@link ParamMultiStmt}
  • *
* * @since 1.0 */ public interface Stmt extends StmtOption { /** * this instance whether is created {@link io.jdbd.session.DatabaseSession} or not. * * @return false : {@link #databaseSession()} always throw {@link UnsupportedOperationException} */ boolean isSessionCreated(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy