Package org.teiid.core.types

Examples of org.teiid.core.types.BaseLob


  private Streamable<?> persistLob(final Streamable<?> lob, final FileStore store, byte[] bytes) throws TeiidComponentException {
   
    // if this is already saved to disk just return
    if (lob.getReference() instanceof BaseLob) {
      try {
        BaseLob baseLob = (BaseLob)lob.getReference();
        InputStreamFactory isf = baseLob.getStreamFactory();
        if (isf.isPersistent()) {
          return lob;
        }
      } catch (SQLException e) {
        // go through regular persistence.
View Full Code Here

TOP

Related Classes of org.teiid.core.types.BaseLob

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.