0
votes
2answers
16 views
Where does pg_lo_write store its contents?
There is a function in our system that writes a file to a postgres BLOB, the function is pg_lo_write, our system uses PHP, ADODB and PostgreSQL.
What I would like to know is where …
0
votes
1answer
29 views
Why my BLOB field is still 13B - what I am doing wrong?
Hi,
I would like to store the data in the MySQL BLOB field. I am using the following code:
int length = (int)fs.Length;
buffer = new byte[length];
…
0
votes
1answer
19 views
How to embed a quicktime video from a MySQL Blob
Hi, I am currently pulling out images from a MySQL Blob using code as follows:
<img src="data:<?php echo $type; ?>;base64,<?php echo base64_encode($file); ?>" width …
0
votes
1answer
12 views
Example using BLOB in SQLAlchemy
Hi,
does anybody have example how to use BLOB in SQLAlchemy?
Regards,
Steve
0
votes
1answer
20 views
Equivalent of SqLite Blob type in Subsonic?
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.
Strangely, in Subsonic's ActiveRecord's Documents clas …
1
vote
4answers
72 views
How to display an Image from a mysql blob.
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.
I have tried:
header("Content-type: $type"); img src …
0
votes
3answers
34 views
Hibernate: OutOfMemoryError persisting Blob when printing log message
I have a Hibernate Entity:
@Entity
class Foo {
//...
@Lob
public byte[] getBytes() { return bytes; }
//....
}
My VM is configured with a maximum heap size of 512 …
0
votes
1answer
15 views
Informix SQL text Blob wildcard search
I am looking for an efficient way to use a wild card search on a text (blob) column.
I have seen that it is internally stored as bytes...
The data amount will be limited, but unfor …
0
votes
3answers
35 views
SQL 2008: Filestream versus Binaries in the database.
Hello,
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.
I've checked the difference …
0
votes
1answer
111 views
Error saving image into Google App Engine/Java
I'm trying to make following JDO entity in GAE/J (I'm using Gilead).
package test.domains;
import java.io.Serializable;
import javax.jdo.annotations.IdGeneratorStrategy;
import …
1
vote
4answers
99 views
How to display blob datatype from database to pdf
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... …
3
votes
3answers
185 views
How to insert a blob into a database using sql server management studio
Hi,
How can I easily insert a blob into a varbinary(MAX) field?
for argument sake:
assume the thing I want to insert is: c:\picture.png
the table is mytable
the column is mypict …
-3
votes
2answers
267 views
How can I store and retrieve images from a MySQL database using PHP?
How can I insert an image in MySQL and then retrieve it using PHP?
I have limited experience in either area, and I could use a little code to get me started in figuring this out.
0
votes
1answer
27 views
Managed local storage for blobs
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 …
1
vote
1answer
38 views
FILESTREAM files being left behind after row deleted
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 …
