Package | Description |
---|---|
com.amazon.carbonado.adapter |
Contains annotations and implementations for supporting property adapters.
|
com.amazon.carbonado.lob |
Support for LOB property types, which are Large OBjects.
|
com.amazon.carbonado.raw |
Provides support for repositories that encode/decode storables in a raw
binary format.
|
com.amazon.carbonado.repo.jdbc |
Repository implementation that connects to an external SQL database via
JDBC.
|
com.amazon.carbonado.spi |
Service Provider Interface for Carbonado.
|
Modifier and Type | Method and Description |
---|---|
Blob |
TextAdapter.Adapter.adaptToBlob(java.lang.String text) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
TextAdapter.Adapter.adaptToString(Blob blob) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBlob
AbstractBlob implements a small set of common Blob methods.
|
class |
ByteArrayBlob
Implementation of a Blob which is backed by a growable in-memory byte array.
|
class |
FileBlob
Implementation of a Blob which is backed by a File.
|
Modifier and Type | Method and Description |
---|---|
protected Blob |
BlobClob.getWrappedBlob() |
Constructor and Description |
---|
BlobClob(Blob blob) |
Modifier and Type | Method and Description |
---|---|
Blob |
RawSupport.getBlob(S storable,
java.lang.String name,
long locator)
Returns the Blob for the given locator, returning null if not found.
|
Modifier and Type | Method and Description |
---|---|
long |
RawSupport.getLocator(Blob blob)
Returns the locator for the given Blob, returning zero if null.
|
Modifier and Type | Method and Description |
---|---|
Blob |
JDBCSupport.convertBlob(java.sql.Blob blob,
JDBCBlobLoader loader) |
Blob |
JDBCSupport.setBlobValue(java.sql.PreparedStatement ps,
int column,
Blob blob) |
Modifier and Type | Method and Description |
---|---|
Blob |
JDBCSupport.setBlobValue(java.sql.PreparedStatement ps,
int column,
Blob blob) |
void |
JDBCSupport.updateBlob(Blob oldBlob,
Blob newBlob) |
Modifier and Type | Method and Description |
---|---|
Blob |
LobEngine.createNewBlob(int blockSize)
Returns a new Blob whose length is zero.
|
Blob |
LobEngine.getBlobValue(long locator)
Loads a Blob value, without checking if it exists or not.
|
Modifier and Type | Method and Description |
---|---|
void |
LobEngine.setBlobValue(long locator,
Blob data)
Stores a value into a Blob, replacing anything that was there
before.
|
Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.