active questions tagged blob - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T13:16:29Zhttp://stackoverflow.com/feeds/tag/blobhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1840994/is-there-a-good-application-for-managing-a-sqlite-3-database-with-blob-data-type0Is there a good application for managing a SQLite 3 database with BLOB data type?Joshua2009-12-03T16:15:24Z2009-12-04T04:33:07Z
<p>I want to create and manage a database with images and or audio clips. I know it's not the best idea and I know there are better options, but it's the easiest way to have the data separate from the programming and I'm not the one writing the code. So I need an application that will allow me to edit the database that the application is calling, and the application needs to call random audio or image file. I JUST NEED TO KNOW OF AN SQL EDITOR.</p>
http://stackoverflow.com/questions/1636877/how-can-i-store-and-retrieve-images-from-a-mysql-database-using-php-3How can I store and retrieve images from a MySQL database using PHP?Mask2009-10-28T12:13:37Z2009-12-04T00:09:26Z
<p>How can I insert an image in MySQL and then retrieve it using PHP?</p>
<p>I have limited experience in either area, and I could use a little code to get me started in figuring this out.</p>
http://stackoverflow.com/questions/1843054/streaming-in-and-out-of-an-sql-server-2005-image-field-with-c0Streaming in and out of an SQL Server 2005 image field with C# ?Maxime Labelle2009-12-03T21:29:43Z2009-12-03T21:29:43Z
<p>After having checked extensively for an answer to this question, I still cannot find a satisfying solution. So here goes.</p>
<p>I need to store possibly large amount of data in a column of an SQL Server 2005 table. I absolutely need to work in a streaming fashion, so that :</p>
<ol>
<li>When writing, the data is sent in chunks to the database. Is there some builtin way to achieve this from C# client-code using the classes in System.Data.SqlClient? Or do I need to resort to using ADODB.Net Stream object ? Not sure how to mix the two concepts (especially with regards to participating in the current SqlTransaction.</li>
</ol>
<p>Alternatively, is there a way for a T-SQL stored procedure to <em>append</em> data to an existing column. With this approach, the stored procedure would be called multiple times from the client code and this would achieve the streaming requirement.</p>
<ol>
<li>When reading, the data should be read one chunk at a time, in a streaming fashion.</li>
</ol>
<p>Alternatively, is there a way for a T-SQL stored procedure to provide sequential or even random access to the contents of an image field?</p>
http://stackoverflow.com/questions/1839446/can-a-bfile-locator-point-to-a-directory-on-a-different-filer0Can a BFILE locator point to a directory on a different filer?Caroline Orr2009-12-03T11:47:34Z2009-12-03T12:01:29Z
<p>I have a java web application which needs to upload files and we want to store these files on the filesystem rather than in the database. The database will store the document metadata only.</p>
<p>The question is whether to just store the path as a string in Oracle, or as a BFILE locator? Can a BFILE locator point to a location which is on a different filesystem? If we have to store the file on the Oracle filer then we may as well just store it as a BLOB.</p>
http://stackoverflow.com/questions/1177702/store-and-retrieve-image-by-hibernate0Store and retrieve Image by HibernateAm1rr3zA2009-07-24T13:35:46Z2009-12-02T08:00:09Z
<p>Hi every One,
can any one tell me what is the best way to store and Image By hibernate (into MySQL)
I have this class Mapping</p>
<pre><code>@Entity
@Table(name = "picture")
public class PictureEntity implements Serializable {
@Id
@Column(name = "id")
@GeneratedValue
private int id;
@Column(name = "format", length = 8)
private String format;
//@Basic(fetch = FetchType.LAZY)
@Lob
@Column(name = "context", nullable = true, columnDefinition = "mediumblob")
private java.sql.Blob myBlobAttribute; // or byte[] no diff
@ManyToOne(fetch = FetchType.EAGER)
@JoinColumn(name = "branch_fk", referencedColumnName = "id", nullable = false)
private BranchEntity branch;
</code></pre>
<p>and also have PictureDAO
I wanna know How shoud I implement My PictureDAO to save and retrieve Image.</p>
http://stackoverflow.com/questions/1807967/where-does-pglowrite-store-its-contents0Where does pg_lo_write store its contents?ILMV2009-11-27T10:32:04Z2009-11-27T15:11:50Z
<p>There is a function in our system that writes a file to a postgres BLOB, the function is <code>pg_lo_write</code>, our system uses PHP, ADODB and PostgreSQL.</p>
<p>What I would like to know is where is this data stored, is it a file in a postgres directory, in a table?</p>
<p>Many thanks!</p>
<p><strong>Answer Information</strong></p>
<p>Thanks to Ben Fransen for the answer, the BLOB is in fact stored in the <code>pg_largeobject</code> table. I'm using pgAdmin and the table is hidden from view, however it can be accessed using a query.</p>
<pre><code>SELECT * FROM pg_largeobject WHERE LOID = 123456
</code></pre>
http://stackoverflow.com/questions/1790348/why-my-blob-field-is-still-13b-what-i-am-doing-wrong0Why my BLOB field is still 13B - what I am doing wrong?Petr2009-11-24T14:15:09Z2009-11-24T14:22:12Z
<p>Hi,
I would like to store the data in the MySQL BLOB field. I am using the following code:</p>
<pre><code>int length = (int)fs.Length;
buffer = new byte[length];
int count;
int sum = 0;
while ((count = fs.Read(buffer, sum, length - sum)) > 0)
sum += count;
prikaz.CommandText = "INSERT INTO attachments (ReferenceID,Filename,File) VALUES ('" + referenceID + "','test','" + buffer + "')";
prikaz.ExecuteNonQuery();
</code></pre>
<p>But in the database, the BLOB field has always 13B. Could you please advice? Thanks!</p>
http://stackoverflow.com/questions/1786059/how-to-embed-a-quicktime-video-from-a-mysql-blob0How to embed a quicktime video from a MySQL Blobunknown (google)2009-11-23T21:21:12Z2009-11-23T21:30:08Z
<p>Hi, I am currently pulling out images from a MySQL Blob using code as follows:</p>
<pre><code><img src="data:<?php echo $type; ?>;base64,<?php echo base64_encode($file); ?>" width="240"/>
</code></pre>
<p>I am now trying to embed a movie in a page and I am currently using code as follows:</p>
<pre><code><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320">
<param name="src" value="http://www.yourdomain/your-video.mov">
<param name="autoplay" value="true">
<param name="type" value="video/quicktime" height="256" width="320">
<embed src="<?php echo base64_encode($file); ?>" height="256" width="320" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed>
</object>
</code></pre>
<p>I'm not sure how to go about actually grabbing the data? Any ideas?</p>
http://stackoverflow.com/questions/1779701/example-using-blob-in-sqlalchemy0Example using BLOB in SQLAlchemyunknown (google)2009-11-22T19:28:04Z2009-11-23T17:27:04Z
<p>Hi,</p>
<p>does anybody have example how to use BLOB in SQLAlchemy?</p>
<p>Regards,
Steve</p>
http://stackoverflow.com/questions/1764796/equivalent-of-sqlite-blob-type-in-subsonic0Equivalent of SqLite Blob type in Subsonic?AJ2009-11-19T16:53:06Z2009-11-19T16:59:18Z
<p>Hi
In one SqLite table, I have a BLOB column for saving images (or binary data as a matter of fact). The table is Documents.</p>
<p>Strangely, in Subsonic's ActiveRecord's Documents class, the type of that coulmn shows as STRING which doesn't make sense. It should be byte array. Right?</p>
<p>What am I missing here? How do I map SqLite BLOB column in Subsonic?</p>
<p>Please advise. Thanks
Pankaj</p>
http://stackoverflow.com/questions/1760754/how-to-display-an-image-from-a-mysql-blob1How to display an Image from a mysql blob.unknown (google)2009-11-19T03:43:41Z2009-11-19T10:43:27Z
<p>I am trying to display an image from a MySQL blob field. I have tried a few different things and none of them seem to work. </p>
<p>I have tried:</p>
<ul>
<li><p><code>header("Content-type: $type"); img src = $blobData;</code></p></li>
<li><p><code>header("Content-type: $type"); echo($blobData);</code></p></li>
</ul>
http://stackoverflow.com/questions/211895/storing-documents-as-blobs-in-a-database-any-disadvantages9Storing Documents as Blobs in a Database - Any disadvantages?mm20102008-10-17T12:09:46Z2009-11-18T19:57:03Z
<p>The requirements for my document management system were:</p>
<ol>
<li>Must be secure from theft by simple copying of directories, files etc.</li>
<li>Must be secure against traditional virus infection (infection of physical file)</li>
<li>Must be fast to retrieve</li>
<li>The repository must not be visible to casual (directory) browsing users etc.</li>
</ol>
<p>I have decided to store all documents (and scanned images) as blobs in the database and so far my experience is wonderful and document retrieval is blindingly fast as well - it meets all the criteria from above and there are even a couple of additional advantages, such as autostoring documents together with the entity it relates to, easy and fast seaching of contents, removing of all sorts of user activities around opening and naming of documents etc. etc.</p>
<p>My question is - are there any serious risks or things that I overlooked with this design and implementation?</p>
<p>EDIT Note: DB is PostgreSQL, handles BLOBS very well and scales exceptionally well. The environment is Multi-user.</p>
http://stackoverflow.com/questions/1750470/hibernate-outofmemoryerror-persisting-blob-when-printing-log-message0Hibernate: OutOfMemoryError persisting Blob when printing log message paul2009-11-17T17:31:58Z2009-11-17T19:18:14Z
<p>I have a Hibernate Entity:</p>
<pre><code>@Entity
class Foo {
//...
@Lob
public byte[] getBytes() { return bytes; }
//....
}
</code></pre>
<p>My VM is configured with a maximum heap size of 512 MB. When I try to persist an object which has a 75 MB large object, I get an OutOfMemoryError. </p>
<p>The names of the methods in the stack trace (StringBuilder, ByteArrayBlobType.toLoggableString, pretty.Printer.toString) suggest that hibernate is trying to write a very large log message that contains my object.</p>
<p>Am I correct about why hibernate is using so much memory? What is the simplest way to work around this problem?</p>
<pre><code>java.lang.OutOfMemoryError: Java heap space
at java.lang.AbstractStringBuilder.<init>(AbstractStringBuilder.java:44)
at java.lang.StringBuilder.<init>(StringBuilder.java:81)
at org.hibernate.type.ByteArrayBlobType.toString(ByteArrayBlobType.java:117)
at org.hibernate.type.ByteArrayBlobType.toLoggableString(ByteArrayBlobType.java:127)
at org.hibernate.pretty.Printer.toString(Printer.java:53)
at org.hibernate.pretty.Printer.toString(Printer.java:90)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:97)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:26)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
at org.jboss.seam.persistence.HibernateSessionProxy.flush(HibernateSessionProxy.java:181)
</code></pre>
http://stackoverflow.com/questions/1740912/informix-sql-text-blob-wildcard-search0Informix SQL text Blob wildcard searchweismat2009-11-16T08:56:36Z2009-11-16T16:58:32Z
<p>I am looking for an efficient way to use a wild card search on a <em>text</em> (blob) column.<br>
I have seen that it is internally stored as bytes...
The data amount will be limited, but unfortunately my vendor has decided to use this stupid datatype. I would also consider to move everything in a temp table if there is an easy system side function to modify it - unfortunately something like rpad does not work...<br>
I can see the text value correctly via using the column in the select part or when reading the data via Perl's DBI module.</p>
http://stackoverflow.com/questions/1573581/large-pdf-files-not-uploading-to-mysql-database-as-medium-blob-via-php-files-un1Large .PDF Files Not Uploading To MySQL Database as Medium BLOB Via PHP, Files under 2MB Work Finejpdbaugh2009-10-15T16:38:42Z2009-11-16T02:58:02Z
<p>I am developing a PHP script for uploading .PDF documents as medium BLOBs into a MySQL database via PHP. The script also allows users to search for files and open/download them but I do not think that part of the script is relevant to my issue. The script works fine with files less than 2 MB but as soon as I try and upload a file that is more than 2 MB nothing is going into my content(Medium BLOB) column and there is no value for the mime type. I have already tried increasing the max_packet_size for the MySQL server to 4 MB from its default value of 1 MB. I have also updated php.ini to the correct values, I think. I set upload_max_size to 4MB, post_max_size to 4 MB, and memory_limit to 16 MB. I haven't really experimented with the max_input_time though because it is defaulted to 60 seconds which seems like plenty considering this script is for an internal application on an intranet. </p>
<p>I have also tried to catch errors from the PDO object in my script with errorInfo() and errorCode() and both through 0s (no error). </p>
<p>Here is the upload section of my script:</p>
<pre><code>if ($key == 'upload')
{
set_time_limit(0);
$_SESSION['upload'] = $value;
if ($_FILES['userfile']['name'])
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];
$docType = $_POST['docType'];
$netKey = $_POST['netKey'];
$fp = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);
$_SESSION['filetype'] = $fileType;
if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
}
$sqlCheck = "SELECT id, name, documentType, networkKey FROM upload WHERE active='1'";
foreach ($dbh->query($sqlCheck) as $row)
{
if (($row['name'] == $fileName) && ($row[networkKey] == $netKey) && ($row['documentType'] == $docType))
{
$_SESSION['updateRow'] = $row['id'];
}
}
if ($_SESSION['updateRow'])
{
$deactivateDuplicate = "UPDATE upload SET active = 0, modifiedBy = '".strtoupper($_SERVER['REMOTE_USER'])."', modifiedDate = Now() WHERE id = '".$_SESSION['updateRow']."' AND active ='1'";
$dbh->query($deactivateDuplicate);
$_SESSION['sql'] = "SELECT id, name, documentType, type, size, networkKey, modifiedBy, modifiedDate, active FROM upload WHERE active = '1'";
$_SESSION['uploadSearch'] = 1;
$_SESSION['updateRow'] = 0;
}
$values = "'".$fileName."','".$docType."','".$fileType."','".$content."','".$fileSize."','".$netKey."','".strtoupper($_SERVER['REMOTE_USER'])."', Now(), 1";
$sqlUpload = "INSERT INTO upload (name, documentType, type, content, size, networkKey, modifiedBy, modifiedDate, active) VALUES (".$values.")";
$dbh->query($sqlUpload);
$_SESSION['sql'] = "SELECT id, name, documentType, type, size, networkKey, modifiedBy, modifiedDate, active FROM upload WHERE active = '1'";
$_SESSION['uploadSearch'] = 1;
}
}
</code></pre>
<p>And Here is the front end of the application showing that a smaller file works and a larger file does not. The file sample.pdf is less than 1 MB and the file test.pdf is 2.5 MB. </p>
<p><a href="http://www.imagechicken.com/viewpic.php?p=1255628359017775300&x=png" rel="nofollow">http://www.imagechicken.com/viewpic.php?p=1255628359017775300&x=png</a></p>
<p>I would have used img tags but alas I am a new user and not allowed.</p>
<p>The next thing I am going to look for is a setting in Apache that limits file sizes. I am new to LAMP so any tips would be great.
Thanks</p>
http://stackoverflow.com/questions/1034068/what-is-the-difference-between-converting-to-hex-on-the-client-end-and-using-rawt1What is the difference between converting to hex on the client end and using rawtohex?Jason Baker2009-06-23T17:46:24Z2009-11-10T19:29:34Z
<p>I have a table that's created like this:</p>
<pre><code>CREATE TABLE bin_test
(id INTEGER PRIMARY KEY, b BLOB)
</code></pre>
<p>Using Python and cx_Oracle, if I do this:</p>
<pre><code>value = "\xff\x00\xff\x00" #The string represented in hex by ff00ff00
self.connection.execute("INSERT INTO bin_test (b) VALUES (rawtohex(?))",
(value,))
self.connection.execute("SELECT b FROM bin_test")
</code></pre>
<p>I eventually end up with a hex value of <code>a000a000</code>, which isn't correct! However if I do this:</p>
<pre><code>import binascii
value = "\xff\x00\xff\x00"
self.connection.execute("INSERT INTO bin_test (b) VALUES (?)",
(binascii.hexlify(value,)))
self.connection.execute("SELECT b FROM bin_test")
</code></pre>
<p>I get the correct result. I have a type conversion system here, but it's a bit difficult to describe it here. Thus, can someone point me in the right direction as to whether I'm doing something wrong at the SQL level or whether something weird is happening with my conversions?</p>
http://stackoverflow.com/questions/1707519/sql-2008-filestream-versus-binaries-in-the-database0SQL 2008: Filestream versus Binaries in the database.Sem Dendoncker2009-11-10T12:13:54Z2009-11-10T12:22:25Z
<p>Hello,</p>
<p>Yesterday I asked the question on how I should save my files.
After some research I've desided to go with storing the files "in" the database.</p>
<p>I've checked the difference between storing the files using filestream and storing the files in the database itself.</p>
<p>Each has it's advantages and disadvantages. To help me with my research this site helped me out a lot:
<a href="http://www.codeproject.com/KB/database/SqlFileStream.aspx" rel="nofollow">http://www.codeproject.com/KB/database/SqlFileStream.aspx</a></p>
<p>So basically it says that saving the files using filestream is better if the files are bigger than 1mb.</p>
<p>But I've discovered another problem with filestreaming. If you delete a record in the database the file still exists on the filesystem.</p>
<p>Therefore I need you guys opinion.
What to use? Filestream or saving the files in the database using VARBINARY?</p>
<p>Grtz,
M.</p>
http://stackoverflow.com/questions/983726/store-a-pdf-in-mysql3store a pdf in mysqlSnOrfus2009-06-11T21:14:01Z2009-11-09T12:18:00Z
<p>How would you store a PDF document in a field in mysql?</p>
<p>Currently I have a list of customers and each customer has a certificate with information about their account that they can give to other companies to prove that they're our customer. Currently their certificate is exported as a pdf and e-mailed to someone here at work (the customer gets a physical copy as well), and that person's mailbox is filled with these e-mails. I'd much prefer to just have it in the customer's record - allowing it to be accessed via the customer's file in our in-house CRM.</p>
<p>I considered putting the PDFs in a folder and storing their location as a varchar in the customer's record, but if the PDFs get moved/deleted/etc. then we're up a creek.</p>
<p>My understanding is that a blob or mediumblob is the type of field that I'd use to store it, but I'm a little ignorant in this regard. I'm not sure how to store something like that in the field (what c# datatype to give it), and then how to get it and open it via a pdf reader.</p>
http://stackoverflow.com/questions/1699064/error-saving-image-into-google-app-engine-java0Error saving image into Google App Engine/JavaMaksim2009-11-09T04:16:30Z2009-11-09T10:40:27Z
<p>I'm trying to make following JDO entity in GAE/J (I'm using <a href="http://noon.gilead.free.fr/gilead/" rel="nofollow">Gilead</a>).</p>
<pre><code>package test.domains;
import java.io.Serializable;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;
import net.sf.gilead.pojo.java5.LightEntity;
import com.google.appengine.api.datastore.Blob;
import com.google.appengine.api.datastore.Key;
@PersistenceCapable(identityType=IdentityType.APPLICATION, detachable="true")
public class Banner extends LightEntity implements Serializable
{
private static final long serialVersionUID = 1058354709157710766L;
// Fields
@PrimaryKey
@Persistent(valueStrategy=IdGeneratorStrategy.IDENTITY)
private Key id;
@Persistent
private String name;
@Persistent
private String sizeX;
@Persistent
private String sizeY;
@Persistent
private String description;
@Persistent
private Blob img;
// Getters and Setters
}
</code></pre>
<p>And encountering following problem:</p>
<blockquote>
<p>[ERROR] Line 40: No source code is
available for type
com.google.appengine.api.datastore.Blob;
did you forget to inherit a required
module?</p>
</blockquote>
<p>What can cause this problem? The code compiles fine without Blob object. By the way I tried to follow <a href="http://stackoverflow.com/questions/1513603/how-to-upload-and-store-an-image-with-google-app-engine-java/1514314#1514314">this</a> example.</p>
http://stackoverflow.com/questions/1673970/how-to-display-blob-datatype-from-database-to-pdf1How to display blob datatype from database to pdfanand2009-11-04T14:10:25Z2009-11-04T17:11:13Z
<p>I am having with displaying an image file stored in a database as BLOB type.... now i want to call that image and display it in a pdf...i am using jsp and servlet for web client... i just need a central idea or crux of how to go about the problem.</p>
<p>Any help will be highly appreciated</p>
<p>Thank you</p>
<p>Anand</p>
http://stackoverflow.com/questions/1171283/aspnet-email-attachment-from-sql-blob0ASPNet EMail attachment from SQL BLOBClint Morgan2009-07-23T12:01:03Z2009-11-02T23:00:02Z
<p>We are storing scheduled email information in SQL Server 2005. Included in the email information are 0 - 3 attachments of <b>varying filetype</b>. I have a VB.net Windows service that runs 'x' number of minutes, populates a dataset with the email info from SQL Server, builds the emails, and sends them via ASPNet EMail.</p>
<p>Trying to build and add an attachment from a BLOB causes the email send method to time out, even if the attachment is just a 15 byte text file. Hardcoding the path directly to the file works fine. I've tried several methods and can't get it right.</p>
http://stackoverflow.com/questions/1643627/how-to-insert-a-blob-into-a-database-using-sql-server-management-studio3How to insert a blob into a database using sql server management studioreinier2009-10-29T13:12:38Z2009-10-29T14:49:21Z
<p>Hi,</p>
<p>How can I easily insert a blob into a varbinary(MAX) field?</p>
<p>for argument sake:</p>
<p>assume the thing I want to insert is: c:\picture.png
the table is mytable
the column is mypictureblob
and the place is recid=1</p>
<p>I've been googling for some time and I can't find a simple solution</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1632838/managed-local-storage-for-blobs0Managed local storage for blobsMoo2009-10-27T18:41:04Z2009-10-27T18:43:05Z
<p>The general consensus these days seems to be that you do not store binary large objects in your relational database, as its not really optimised for that sort of thing, and instead put it into a dedicated storage engine.</p>
<p>Can anyone suggest a solution for the .Net platform, along the lines of the Microsoft Azure Blob Storage engine, but kept local to the organisation?</p>
http://stackoverflow.com/questions/1625001/filestream-files-being-left-behind-after-row-deleted1FILESTREAM files being left behind after row deletedDale2009-10-26T14:06:24Z2009-10-26T14:13:41Z
<p>I have successfully set up FILESTREAM on my SQL 2008 server; however I've noticed that even when I have deleted rows containing FILESTREAM data, the physical data file doesn't seem to get deleted.</p>
<p>By the physical file, I mean the file in SQLServer's managed directory with a uniqueidentifer as the filename not the original file added to the dbase.</p>
<p>Does anyone know if SQLServer will delete the file eventually? If there are a lot of large files removed from the dbase I'd expect to be able to reclaim the space quickly that's all.</p>
<p>Thanks,</p>
<p>Dale</p>
http://stackoverflow.com/questions/1613639/how-to-store-blob-data-in-sqlite-using-tcl0How to Store BLOB data in Sqlite Using TclDFM2009-10-23T13:57:27Z2009-10-24T03:10:49Z
<p>Hello:</p>
<p>I have a Tcl TK application that has a Sqlite back-end. I pretty much understand the syntax for inserting, manipulating, and reading string data; however, I do not understand how to store pictures or files into Sqlite with Tcl.</p>
<p>I do know I have to create a column that holds BLOB data in Sqlite. I just don't know what to do on the Tcl side of things. If anyone knows how to do this or has a good reference to suggest for me, I would really appreciate it.</p>
<p>Thank you,</p>
<p>Damion</p>
http://stackoverflow.com/questions/95061/stop-activerecord-from-loading-blob-column0Stop Activerecord from loading Blob columnpraveenray2008-09-18T18:05:01Z2009-10-22T01:17:07Z
<p>How can I tell Activerecord to not load blob columns unless explicitly asked for? There are some pretty large blobs in my legacy DB that must be excluded for 'normal' Objects.</p>
http://stackoverflow.com/questions/1579990/blob-download-truncated-at-1-mb-script-works-for-files-less-than-1-mb2BLOB Download Truncated at 1 MB Script Works for Files Less Than 1 MBjpdbaugh2009-10-16T19:34:59Z2009-10-21T19:51:49Z
<p>I just recently asked and solved a question pertaining to uploading .PDF files that are greater than 2 MB into a MySQL database as BLOBS. I had to change some settings in my php.ini file and MySQLs maximum packet setting. However, fixing this issue has led me to discover a new issue with my script. </p>
<p>Now since I can upload files to my BLOB database I attempted to download the file for testing purposes. Much to my dismay when I went to open the .PDF file I received the following error: Failed to load document (error 3) 'file:///tmp/test-13.pdf'. Upon further investigation I found out that the file being downloaded, test.pdf, was only 1 MB, a little less than half of its supposed size in the database of a little more than 2 MB. This is obviously the reason for the error. </p>
<p>The following piece of code is the part of my script I am using for downloading files from the database. It is is at the very top of of script and <b> works Flawlessly for files that are less than 1 MB. </b></p>
<pre><code> foreach($_REQUEST as $key => $value)
{
if ($value == 'Open')
{
header();
session_start();
$dbh = new PDO('mysql:host='.$_SESSION['OpsDBServer'].'.ops.tns.its.psu.edu;
dbname='.$_SESSION['OpsDB'], $_SESSION['yoM'], $_SESSION['aMa']);
$id = $key;
$sqlDownload = "SELECT name, type, content, size FROM upload WHERE
id='".$id."'";
$result = $dbh->query($sqlDownload);
$download = $result->fetchAll();
$type = $download[0]['type'];
$size = $download[0]['size'];
$name = $download[0]['name'];
$content = $download[0]['content'];
header("Content-type: $type");
header("Content-Disposition: inline; filename=$name");
header("Content-length: $size");
header("Cache-Control: maxage=1");
header("Pragma: public");
echo $content;
exit;
}
}
</code></pre>
<p>I am thinking that maybe I have some header statements wrong? I am very confused about what to do. I have searched through php.ini and I have found no settings that I think need to changed and my maximum packet setting for MySQL is 4 MB so a 2 MB should download. </p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1595101/blob-into-oracle-about-15-are-filled-with-000Blob into Oracle: about 15% are filled with \00Eric Darchis2009-10-20T14:39:20Z2009-10-20T16:12:05Z
<p>Under Weblogic 10, I am using Hibernate to store data into several tables with BLOBs. It's always worked fine but the customer found specific circumstances where 15% of the BLOBs have the correct size but only contain null characters. I can't figure out what makes it good or full of emptiness.</p>
<p>The BLOB type I am using does a:</p>
<pre><code>public void nullSafeSet(PreparedStatement st, Object value, int index) throws HibernateException, SQLException {
if (value == null) {
st.setNull(index, sqlTypes()[0]);
return;
}
try {
Connection conn = st.getConnection();
if (conn instanceof org.apache.commons.dbcp.DelegatingConnection) {
log.debug("Delegating connection, digging for actual driver");
conn = ((org.apache.commons.dbcp.DelegatingConnection)st.getConnection()).getInnermostDelegate();
}
OutputStream tempBlobWriter = null;
BLOB tempBlob = BLOB.createTemporary(conn, true, BLOB.DURATION_SESSION);
try {
tempBlob.open(BLOB.MODE_READWRITE);
tempBlobWriter = tempBlob.setBinaryStream(1L);
tempBlobWriter.write((byte[])value);
tempBlobWriter.flush();
} finally {
if (tempBlobWriter != null)
tempBlobWriter.close();
tempBlob.close();
}
st.setBlob(index, (Blob) tempBlob);
} catch (IOException e) {
throw new HibernateException(e);
}
}
</code></pre>
<p>I put a log in there and can confirm that the value (byte[]) is good. I tried to change the createTemporary parameters, no success.</p>
<p>I am running this under Weblogic 10.0 (can't upgrade that) with the bundled Oracle Thin driver.</p>
<p>A clue is that the working calls come from the standard web service deployed and managed by WLS. But the problematic calls are done from a thread started along with the component that interfaces with some legacy system with JNI. This thread works like a charm for everything except these BLOBs. I am getting a new Session just before inserting the data and closing it a bit after. (The Session does NOT remain open for the lifetime of the thread)</p>
<p>I have set the Hibernate log level to DEBUG but it does not give me any clue. I'm starting to run out of ideas...</p>
http://stackoverflow.com/questions/1551875/permalinkfu-for-text-fields-how-can-i-convert-from-blob-to-string-output0permalink_fu for text fields: How can I convert from blob to string output?Joe O'Driscoll2009-10-11T21:44:41Z2009-10-11T23:32:54Z
<p>If I use <a href="http://github.com/technoweenie/permalink%5Ffu/blob/master/lib/permalink%5Ffu.rb" rel="nofollow">permalink_fu</a> on a text field I get this for the resulting <code>permalink</code>:</p>
<pre><code>http://localhost:3000/243webb4ee4ff2227230b4232438591810c35d3f
</code></pre>
<p>instead of </p>
<pre><code>http://localhost:3000/where-is-my-lost-cat
</code></pre>
<p>I assume this is because the <code>text</code> field becomes a <code>blob</code> in the database and <code>permalink_fu</code> only knows how to operate on <code>string</code> fields.</p>
<p><strong>How could I convert this to a readable <code>string</code> version?</strong> </p>
<p><em>(without changing the database type from <code>text</code> to <code>string</code>)</em></p>
http://stackoverflow.com/questions/1541309/is-it-safe-to-convert-a-mysqlppsqlblob-to-a-stdstring0Is it safe to convert a mysqlpp::sql_blob to a std::string?Runcible2009-10-09T00:44:37Z2009-10-09T01:19:26Z
<p>I'm grabbing some binary data out of my MySQL database. It comes out as a mysqlpp::sql_blob type.</p>
<p>It just so happens that this BLOB is a serialized Google Protobuf. I need to de-serialize it so that I can access it normally.</p>
<p>This gives a compile error, since ParseFromString() is not intended for mysqlpp:sql_blob types:</p>
<pre><code>protobuf.ParseFromString( record.data );
</code></pre>
<p>However, if I force the cast, it compiles OK:</p>
<pre><code>protobuf.ParseFromString( (std::string) record.data );
</code></pre>
<p>Is this safe? I'm particularly worried because of this snippet from the mysqlpp documentation:</p>
<p><A HREF="http://tangentsoft.net/mysql++/doc/html/userman/ssqls.html#ssqls-blob" rel="nofollow"><i>"Because C++ strings handle binary data just fine, you might think you can use std::string instead of sql_blob, but the current design of String converts to std::string via a C string. As a result, the BLOB data is truncated at the first embedded null character during population of the SSQLS. There’s no way to fix that without completely redesigning either String or the SSQLS mechanism."</i></A></p>
<p>Thanks for your assistance!</p>