1
vote
4answers
31 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
2answers
179 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.
2
votes
3answers
63 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 …
116
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. …
1
vote
1answer
22 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 …
0
votes
2answers
49 views
How to Store BLOB data in Sqlite Using Tcl
Hello:
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 underst …
0
votes
3answers
121 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 …
0
votes
1answer
22 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 …
2
votes
2answers
56 views
BLOB Download Truncated at 1 MB Script Works for Files Less Than 1 MB
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.in …
0
votes
1answer
26 views
Blob into Oracle: about 15% are filled with \00
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 h …
0
votes
1answer
28 views
permalink_fu for text fields: How can I convert from blob to string output?
If I use permalink_fu on a text field I get this for the resulting permalink:
http://localhost:3000/243webb4ee4ff2227230b4232438591810c35d3f
instead of
http://localhost:3000/w …
0
votes
1answer
19 views
Is it safe to convert a mysqlpp::sql_blob to a std::string?
I'm grabbing some binary data out of my MySQL database. It comes out as a mysqlpp::sql_blob type.
It just so happens that this BLOB is a serialized Google Protobuf. I need to de …
3
votes
6answers
185 views
Detecting File Compression
I have to read some data stored by a third party application in an Acess 2000 database. The vendor is no longer around to ask questions.
One table contains image data that appear …
0
votes
2answers
127 views
Inserting raw (binary?) image data into mysql? (PHP)
I've got a raw/(binary?) image like this:
ÿØÿà�JFIF��–�–�*!!!$'$ &(goes on forever);
when i try to insert this into mysql it doesn't work, the column type is set to longblob …
3
votes
9answers
237 views
Saving images: files or blobs?
When you save your images (supose you have lots of them) do you store then as blobs in your Database, or as files? Why?
Duplicate of: http://stackoverflow.com/questions/3748/stori …
