Package net.sourceforge.jtds.jdbc
Class BlobImpl
- java.lang.Object
-
- net.sourceforge.jtds.jdbc.BlobImpl
-
- All Implemented Interfaces:
java.sql.Blob
public class BlobImpl extends java.lang.Object implements java.sql.BlobAn in-memory or disk based representation of binary data.- Version:
- $Id: BlobImpl.java,v 1.31.2.3 2009-12-30 08:45:34 ickzon Exp $
- Author:
- Brian Heineman, Mike Hutchinson
-
-
Field Summary
Fields Modifier and Type Field Description private BlobBufferblobBufferThe underlyingBlobBuffer.private static byte[]EMPTY_BLOB0 lengthbyte[]as initial value for emptyBlobs.
-
Constructor Summary
Constructors Constructor Description BlobImpl(JtdsConnection connection)Constructs a new emptyBlobinstance.BlobImpl(JtdsConnection connection, byte[] bytes)Constructs a newBlobinstance initialized with data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfree()java.io.InputStreamgetBinaryStream()java.io.InputStreamgetBinaryStream(long pos, long length)byte[]getBytes(long pos, int length)longlength()longposition(byte[] pattern, long start)longposition(java.sql.Blob pattern, long start)java.io.OutputStreamsetBinaryStream(long pos)intsetBytes(long pos, byte[] bytes)intsetBytes(long pos, byte[] bytes, int offset, int len)voidtruncate(long len)
-
-
-
Field Detail
-
EMPTY_BLOB
private static final byte[] EMPTY_BLOB
0 lengthbyte[]as initial value for emptyBlobs.
-
blobBuffer
private final BlobBuffer blobBuffer
The underlyingBlobBuffer.
-
-
Constructor Detail
-
BlobImpl
BlobImpl(JtdsConnection connection)
Constructs a new emptyBlobinstance.- Parameters:
connection- a reference to the parent connection object
-
BlobImpl
BlobImpl(JtdsConnection connection, byte[] bytes)
Constructs a newBlobinstance initialized with data.- Parameters:
connection- a reference to the parent connection objectbytes- the blob object to encapsulate
-
-
Method Detail
-
getBinaryStream
public java.io.InputStream getBinaryStream() throws java.sql.SQLException- Specified by:
getBinaryStreamin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
getBytes
public byte[] getBytes(long pos, int length) throws java.sql.SQLException- Specified by:
getBytesin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
length
public long length() throws java.sql.SQLException- Specified by:
lengthin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
position
public long position(byte[] pattern, long start) throws java.sql.SQLException- Specified by:
positionin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
position
public long position(java.sql.Blob pattern, long start) throws java.sql.SQLException- Specified by:
positionin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
setBinaryStream
public java.io.OutputStream setBinaryStream(long pos) throws java.sql.SQLException- Specified by:
setBinaryStreamin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
setBytes
public int setBytes(long pos, byte[] bytes) throws java.sql.SQLException- Specified by:
setBytesin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
setBytes
public int setBytes(long pos, byte[] bytes, int offset, int len) throws java.sql.SQLException- Specified by:
setBytesin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
truncate
public void truncate(long len) throws java.sql.SQLException- Specified by:
truncatein interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
free
public void free() throws java.sql.SQLException- Specified by:
freein interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
getBinaryStream
public java.io.InputStream getBinaryStream(long pos, long length) throws java.sql.SQLException- Specified by:
getBinaryStreamin interfacejava.sql.Blob- Throws:
java.sql.SQLException
-
-