Uses of Class
org.sqlite.Blob

Packages that use Blob
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 Blob in org.sqlite
 

Methods in org.sqlite that return Blob
 Blob Database.openBlob(java.lang.String dbName, java.lang.String tableName, java.lang.String columnName, long rowId, int flag)
          invoke sqlite3_blob_open() function.
 

Uses of Blob in org.sqlite.io
 

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

Uses of Blob in org.sqlite.jdbc
 

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