How is that possible to upload image in database table by selecting image file in FileChooser.I want to upload imgage file, not its name.
Thanks.
As images are binary..you can put the binary content in BLOB filed.Upload the image to server and then use a servlet to upload its binary content to database. I do not know if this would be efficient.