Hi
Can anybody guide me: How to store images in MS Access Table
Fields like the way we store images in .FPT file using FWH ?
Thanks in advance
- Ramesh Babu P
How to Store Images in MDB Table using FWH ?
- RAMESHBABU
- Posts: 591
- Joined: Fri Oct 21, 2005 5:54 am
- Location: Secunderabad (T.S), India
Re: How to Store Images in MDB Table using FWH ?
As i know, the problem is that you can do this only with DAO and not ADO.With ADO you can store large amount of array byte inside an OLE field but access will not recognize it as Image.RAMESHBABU wrote:Hi
Can anybody guide me: How to store images in MS Access Table
Fields like the way we store images in .FPT file using FWH ?
Thanks in advance
- Ramesh Babu P
Regards
A.S.K
- RAMESHBABU
- Posts: 591
- Joined: Fri Oct 21, 2005 5:54 am
- Location: Secunderabad (T.S), India
Hi dbzap
Thanks to ask and dbzap
- Ramesh Babu P
Can I get a small working sample please.1. read the bitmap ( or other format )
2. transform to text with base64
3. in base64, is text; simple to store in any field of varchar o variable length.
For display, the process is the same but in inverse order.
Thanks to ask and dbzap
- Ramesh Babu P
Last edited by RAMESHBABU on Wed Apr 12, 2006 3:03 pm, edited 1 time in total.
This is the know way BUT you can not see the image from ACCESS.If this does not bother you then you don't have any problems.dbzap wrote:( sorry for my english )
I use a neanderthal tecnique:
1. read the bitmap ( or other format )
2. transform to text with base64
3. in base64, is text; simple to store in any field of varchar o variable length.
For display, the process is the same but in inverse order.
I hope serve to you
Bye.
Regards
A.S.K