Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a mac application that I've developed.

I use it to create sqlite files that are bundled with my iphone app. The mac app uses Core Data and bindings and is working fine except for one "weird" issue.

I use an NSImageView (or Image Well) to allow me to drag and drop jpg files.

This is bound through to an optional binary attribute in my model class.

For some reason when I drag and drop a 4k jpg file it onto the image well and save the sqlite file. The data saved to the binary column is over 15 times larger than it should be.

Whereas if I use an application like SQLiteManager and add the image into the row in the database. The binary data is the correct (expected size).

File 4k jpg Actual size: 2371. Persisted via Core Data size: 35810.

Can anyone give me a suggestion as to why this might be happening?

Do I need to set some setting in Interface Builder or write some custom code?

share|improve this question

1 Answer

Create dump from sqlite3 file and check which content use your space. I use plain sqlite3 to store image cache in Galileo and as far i know there db size ~ total images size.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.