Uses of Interface
org.sqlite.io.Closeable

Packages that use Closeable
org.sqlite Provides the JDBC Driver class and the database access classes. 
org.sqlite.io Provides the classes necessary to read and write the BLOB value. 
org.sqlite.jdbc Provides the API for accessing and processing data stored in a SQLite using the JDBC. 
 

Uses of Closeable in org.sqlite
 

Classes in org.sqlite that implement Closeable
 class Blob
          sqlite3_blob wrapper class.
 class Database
          sqlite3 wrapper class.
 class Statement
          sqlite3_stmt wrapper class.
 

Uses of Closeable in org.sqlite.io
 

Constructors in org.sqlite.io with parameters of type Closeable
BlobInputStream(Closeable owner, Blob blob)
          default constructor.
BlobOutputStream(Closeable owner, Blob blob, long pos)
          create BLOB output stream.
InputStreamAdapter(Closeable owner, long len)
          default constructor.
MemoryInputStream(Closeable owner, SWIGTYPE_p_void blob, long len)
          default constructor.
 

Uses of Closeable in org.sqlite.jdbc
 

Classes in org.sqlite.jdbc that implement Closeable
 class JdbcBlob
           
 

Constructors in org.sqlite.jdbc with parameters of type Closeable
JdbcBlob(Closeable owner, Blob blob)
          Create JdbcBlob object from the sqlite3_blob object.
JdbcBlob(Closeable owner, SWIGTYPE_p_void blob, long len)
          Create JdbcBlob object from the void pointer.