In Adobe Air, how do I pull an image from a sqlite database that was created with .net?
Posted
by smartdirt
on Stack Overflow
See other posts from Stack Overflow
or by smartdirt
Published on 2010-04-30T03:12:45Z
Indexed on
2010/04/30
3:17 UTC
Read the original article
Hit count: 504
We have the need to create a sqlite database that contains images. The database is created using .net. After the db is created we need to use an air application to pull the images from the sqlite db created with c#. The database is created fine and Air can read all but the BLOB field which contains a bytearray created from an image in .net. My assumption is that the .net bytearray is not compatible with the actionscript bytearray because the actionscript byte array is encoded using the AMF protocol and the .net bytearray is not.
© Stack Overflow or respective owner