Tagged Questions

0
votes
1answer
14 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
64 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 …
9
votes
8answers
2k views

Storing Documents as Blobs in a Database - Any disadvantages?

The requirements for my document management system were: Must be secure from theft by simple copying of directories, files etc. Must be secure against traditional virus infection …
0
votes
3answers
22 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
13 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 …
1
vote
4answers
188 views

Large .PDF Files Not Uploading To MySQL Database as Medium BLOB Via PHP, Files under 2MB Work Fine

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 bu …
1
vote
3answers
83 views

What is the difference between converting to hex on the client end and using rawtohex?

I have a table that's created like this: CREATE TABLE bin_test (id INTEGER PRIMARY KEY, b BLOB) Using Python and cx_Oracle, if I do this: value = "\xff\x00\xff\x00" #The string …
0
votes
3answers
33 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 …
3
votes
5answers
326 views

store a pdf in mysql

How would you store a PDF document in a field in mysql? Currently I have a list of customers and each customer has a certificate with information about their account that they can …
0
votes
1answer
91 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
81 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... …
0
votes
1answer
121 views

ASPNet EMail attachment from SQL BLOB

We are storing scheduled email information in SQL Server 2005. Included in the email information are 0 - 3 attachments of varying filetype. I have a VB.net Windows service that run …
3
votes
3answers
162 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
247 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
24 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 2 3 4 5 9 next
15 30 50 per page