Codota Logo
AbstractJdbc4Connection.checkClosed
Code IndexAdd Codota to your IDE (free)

How to use
checkClosed
method
in
org.postgresql.jdbc4.AbstractJdbc4Connection

Best Java code snippets using org.postgresql.jdbc4.AbstractJdbc4Connection.checkClosed (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: postgresql/postgresql

public Properties getClientInfo() throws SQLException
{
  checkClosed();
  return _clientInfo;
}
origin: postgresql/postgresql

public String getClientInfo(String name) throws SQLException
{
  checkClosed();
  return _clientInfo.getProperty(name);
}
origin: postgresql/postgresql

public Blob createBlob() throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createBlob()");
}
origin: postgresql/postgresql

public boolean isValid(int timeout) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "isValid(int)");
}
origin: postgresql/postgresql

public boolean isWrapperFor(Class<?> iface) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "isWrapperFor(Class<?>)");
}
origin: postgresql/postgresql

public SQLXML createSQLXML() throws SQLException
{
  checkClosed();
  return new Jdbc4SQLXML(this);
}
origin: postgresql/postgresql

public <T> T unwrap(Class<T> iface) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "unwrap(Class<T>)");
}
origin: postgresql/postgresql

public Struct createStruct(String typeName, Object[] attributes) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createStruct(String, Object[])");
}
origin: postgresql/postgresql

public Clob createClob() throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createClob()");
}
origin: postgresql/postgresql

public <T> T createQueryObject(Class<T> ifc) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createQueryObject(Class<T>)");
}
origin: postgresql/postgresql

public NClob createNClob() throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createNClob()");
}
origin: postgresql/postgresql

public Array createArrayOf(String typeName, Object[] elements) throws SQLException
{
  checkClosed();
  int oid = getTypeInfo().getPGArrayType(typeName);
  if (oid == Oid.UNSPECIFIED)
    throw new PSQLException(GT.tr("Unable to find server array type for provided name {0}.", typeName), PSQLState.INVALID_NAME);
  StringBuffer sb = new StringBuffer();
  appendArray(sb, elements);
  // This will not work once we have a JDBC 5,
  // but it'll do for now.
  return new Jdbc4Array(this, oid, sb.toString());
}
origin: org.ancoron.postgresql/org.postgresql

public Properties getClientInfo() throws SQLException
{
  checkClosed();
  return _clientInfo;
}
origin: org.ancoron.postgresql/org.postgresql

public String getClientInfo(String name) throws SQLException
{
  checkClosed();
  return _clientInfo.getProperty(name);
}
origin: org.ancoron.postgresql/org.postgresql

public Clob createClob() throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createClob()");
}
origin: org.ancoron.postgresql/org.postgresql

public SQLXML createSQLXML() throws SQLException
{
  checkClosed();
  return new Jdbc4SQLXML(this);
}
origin: org.ancoron.postgresql/org.postgresql

public <T> T createQueryObject(Class<T> ifc) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createQueryObject(Class<T>)");
}
origin: org.ancoron.postgresql/org.postgresql

public Struct createStruct(String typeName, Object[] attributes) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "createStruct(String, Object[])");
}
origin: org.ancoron.postgresql/org.postgresql

public boolean isWrapperFor(Class<?> iface) throws SQLException
{
  checkClosed();
  throw org.postgresql.Driver.notImplemented(this.getClass(), "isWrapperFor(Class<?>)");
}
origin: org.ancoron.postgresql/org.postgresql

public Array createArrayOf(String typeName, Object[] elements) throws SQLException
{
  checkClosed();
  int oid = getTypeInfo().getPGArrayType(typeName);
  if (oid == Oid.UNSPECIFIED)
    throw new PSQLException(GT.tr("Unable to find server array type for provided name {0}.", typeName), PSQLState.INVALID_NAME);
  StringBuffer sb = new StringBuffer();
  appendArray(sb, elements);
  // This will not work once we have a JDBC 5,
  // but it'll do for now.
  return new Jdbc4Array(this, oid, sb.toString());
}
org.postgresql.jdbc4AbstractJdbc4ConnectioncheckClosed

Popular methods of AbstractJdbc4Connection

  • appendArray
  • getTypeInfo
  • haveMinimumServerVersion
  • execSQLUpdate
  • getStandardConformingStrings
  • setClientInfo

Popular in Java

  • Parsing JSON documents to java classes using gson
  • compareTo (BigDecimal)
  • requestLocationUpdates (LocationManager)
  • addToBackStack (FragmentTransaction)
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • FileOutputStream (java.io)
    A file output stream is an output stream for writing data to aFile or to a FileDescriptor. Whether
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Logger (org.slf4j)
    The main user interface to logging. It is expected that logging takes place through concrete impleme
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now