|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.cayenne.access.types.ByteArrayType
public class ByteArrayType
Handles byte[]
, mapping it as either of JDBC types - BLOB or (VAR)BINARY.
Can be configured to trim trailing zero bytes.
Field Summary | |
---|---|
protected boolean |
trimmingBytes
|
protected boolean |
usingBlobs
|
Constructor Summary | |
---|---|
ByteArrayType(boolean trimmingBytes,
boolean usingBlobs)
|
Method Summary | |
---|---|
java.lang.String |
getClassName()
Returns a full name of Java class that this ExtendedType supports. |
boolean |
isTrimmingBytes()
|
boolean |
isUsingBlobs()
Returns true if byte columns are handled as BLOBs internally. |
java.lang.Object |
materializeObject(java.sql.CallableStatement cs,
int index,
int type)
Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method. |
java.lang.Object |
materializeObject(java.sql.ResultSet rs,
int index,
int type)
Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method. |
protected byte[] |
readBinaryStream(java.sql.ResultSet rs,
int index)
|
protected byte[] |
readBlob(java.sql.Blob blob)
|
protected byte[] |
readValueStream(java.io.InputStream in,
int streamSize,
int bufSize)
|
void |
setJdbcObject(java.sql.PreparedStatement st,
java.lang.Object val,
int pos,
int type,
int scale)
Initializes a single parameter of a PreparedStatement with object value. |
void |
setTrimmingBytes(boolean trimingBytes)
|
void |
setUsingBlobs(boolean usingBlobs)
|
static byte[] |
trimBytes(byte[] bytes)
Strips null bytes from the byte array, returning a potentially smaller array that contains no trailing zero bytes. |
protected java.sql.Blob |
writeBlob(byte[] bytes)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected boolean trimmingBytes
protected boolean usingBlobs
Constructor Detail |
---|
public ByteArrayType(boolean trimmingBytes, boolean usingBlobs)
Method Detail |
---|
public static byte[] trimBytes(byte[] bytes)
public java.lang.String getClassName()
ExtendedType
getClassName
in interface ExtendedType
public java.lang.Object materializeObject(java.sql.ResultSet rs, int index, int type) throws java.lang.Exception
ExtendedType
materializeObject
in interface ExtendedType
java.lang.Exception
- if read error occurred, or an object can't be converted to a
target Java class.public java.lang.Object materializeObject(java.sql.CallableStatement cs, int index, int type) throws java.lang.Exception
ExtendedType
materializeObject
in interface ExtendedType
java.lang.Exception
- if read error ocurred, or an object can't be converted to a
target Java class.public void setJdbcObject(java.sql.PreparedStatement st, java.lang.Object val, int pos, int type, int scale) throws java.lang.Exception
ExtendedType
setJdbcObject
in interface ExtendedType
java.lang.Exception
protected java.sql.Blob writeBlob(byte[] bytes)
protected byte[] readBlob(java.sql.Blob blob) throws java.io.IOException, java.sql.SQLException
java.io.IOException
java.sql.SQLException
protected byte[] readBinaryStream(java.sql.ResultSet rs, int index) throws java.io.IOException, java.sql.SQLException
java.io.IOException
java.sql.SQLException
protected byte[] readValueStream(java.io.InputStream in, int streamSize, int bufSize) throws java.io.IOException
java.io.IOException
public boolean isUsingBlobs()
true
if byte columns are handled as BLOBs internally.
public void setUsingBlobs(boolean usingBlobs)
public boolean isTrimmingBytes()
public void setTrimmingBytes(boolean trimingBytes)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |