phani krishna writes:

> how to store the images in mysql database and how to
> retrieve the images onto teh VB form.how to do it.

What about it? Lemme guess, you're wondering how to do it,
right? Two points:
1) Images are just like any other data. Just store them
in a BLOB. As with all other data you need to escape
certain characters, but hopefully you knew that already.
2) Don't store that sort of data in the database. There
are a larg number of reasons why this is a bad thing to do.
Store them in the file system and just let your database
contain information about the images, such as where to find
them in the file system.

//C

-- 
 Carl Troein - Círdan / Istari-PixelMagic - UIN 16353280
 [EMAIL PROTECTED] | http://pixelmagic.dyndns.org/~cirdan/
 Amiga user since '89, and damned proud of it too.


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to