diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2013-08-24 14:15:47 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2013-08-24 14:15:47 +0000 |
commit | 832d81c3e9f94bc8a2b702939b3c29dbe10502b2 (patch) | |
tree | 4549c14c0c745dfb644ba03c061dfb9a714b0434 | |
parent | 6f2d52ca53debd0f1a43012af149605fe64c2443 (diff) | |
download | jackcess-832d81c3e9f94bc8a2b702939b3c29dbe10502b2.tar.gz jackcess-832d81c3e9f94bc8a2b702939b3c29dbe10502b2.zip |
add docs about attachment changes
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@783 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | src/site/xdoc/jackcess-2.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/site/xdoc/jackcess-2.xml b/src/site/xdoc/jackcess-2.xml index d9a266d..cb99e47 100644 --- a/src/site/xdoc/jackcess-2.xml +++ b/src/site/xdoc/jackcess-2.xml @@ -126,6 +126,18 @@ interface extends <code>Map<String,Object></code>, old code can remain largely untouched.</li> </ul> + <li><b><code>Attachment.getFileData</code> now returns the "real" + data.</b></li> + <ul> + <li>Previously, this method returned the internal representation + of the attachment data, which included a wrapper and the data in a + possibly compressed form. Now that the internal format has been + deciphered, this method has been changed to return the actual + attachment content (which is most likely what people would desire + from that method in the first place). The internal representation + can be retrieved from <code>Attachment.getEncodedFileData</code> + if necessary.</li> + </ul> </ul> <h4>Working with Jackcess Encrypt</h4> |