Tagged Questions

0
votes
1answer
23 views

blob download counter in .net

Hi I need to add a download counter to know how many times my BLOB data is read and displayed from the database (to determine traffic). How and where can I add this counter? Many thanks! I have a …
0
votes
3answers
44 views

Blob in Java/Hibernate/sql-server 2005

Hi, I'm trying to insert an HTML blob into our sql-server2005 database. i've been using the data-type [text] for the field the blob will eventually live in. i've also put a '@Lob' annotation on the …
0
votes
2answers
27 views

Streaming in and out of an SQL Server 2005 image field with C# ?

After having checked extensively for an answer to this question, I still cannot find a satisfying solution. So here goes. I need to store possibly large amount of data in a column of an SQL Server …
0
votes
1answer
20 views

Can a BFILE locator point to a directory on a different filer?

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. The …
0
votes
2answers
30 views

Is there a good application for managing a SQLite 3 database with BLOB data type?

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 …
119
votes
52answers
6k views

Storing Images in DB - Yea or Nay?

So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB. What do you think …
0
votes
2answers
30 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 is this data …
0
votes
1answer
34 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]; int …
1
vote
4answers
101 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 = $blobData; …
-3
votes
5answers
338 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
31 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 class, the type of that …
0
votes
1answer
42 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 unfortunately my vendor …
0
votes
1answer
161 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 …
0
votes
1answer
27 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="240"/> I am …
0
votes
1answer
28 views

Example using BLOB in SQLAlchemy

Hi, does anybody have example how to use BLOB in SQLAlchemy? Regards, Steve

1 2 3 4 5 10 next
15 30 50 per page