Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
323 views

Save file from Database image field

I have uploaded a text file to my database into a Image field. The problem is when I try to retrieve the file (make the user able to download it on a click on a link). When I try to download it, it is ...
1
vote
4answers
1k views

How to improve performance in SQL Server table with image fields?

I'm having a very particular performance problem at work! In the system we're using there's a table that holds information about the current workflow process. One of the fields holds a spreadsheet ...
0
votes
1answer
150 views

Error on uploading image in django: “coercing to Unicode: need string or buffer, tuple found”

Trying to work with ImageField in django. Here are my models class Album(models.Model): title = models.CharField(max_length=100) def __unicode__(self): return self.title class ...
0
votes
2answers
1k views

drupal cck image_field and imagecache

I am having trouble getting imagecache to generate a thumbnail based on a preset I have created named 'thumbnail'. I have an cck image_field and a custom node view. The code I am using to output my ...
0
votes
2answers
83 views

Read file from database

I am trying to download a file I have uploaded to an image field in my MS-SQL database. The problem is that when I try to open the file it just says System.Byte[] instead of containing the actual ...
0
votes
1answer
874 views

How to make a Django ImageField save the image to another model?

I have a member profiles application that stores simple information about members of a team. Part of the profile is an image to be used as an avatar. I've been using Photologue to create standard ...