Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to store images in database?

Answers were Sorted based on User's Feedback



How to store images in database?..

Answer / devarathnam c,kotagudibanda(po

Hi... By using "Blob" and "Clob" datatypes

Is This Answer Correct ?    8 Yes 2 No

How to store images in database?..

Answer / mani kant

The setBinaryStream() method of PreparedStatement is used to store binary information.

For storing image into the database, BLOB (Binary Large Object) datatype is used in the table. For example:

CREATE TABLE "IMGTABLE"
( "NAME" VARCHAR2(4000),
"PHOTO" BLOB
)
/

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

What are the differences between execute, executequery, and executeupdate?

0 Answers  


How many isolation levels are supported in JDBC and what are they?

1 Answers  


What are the main steps in java to make JDBC connectivity?

0 Answers   UGC Corporation,


How to find that, a row is updated or not?

2 Answers  


Explain different types of locks in jdbc?

0 Answers  


Does sql allow null values ? Can we use it within where clause ?

0 Answers  


Where is jdbc url mysql?

0 Answers  


How do I know which jdbc driver to use?

0 Answers  


I have written a program to connect to database using odbc.Can this Application run on any Platform????

2 Answers  


How many types of JDBC Drivers are present and what are they?

0 Answers  


How to retrieve warnings in jdbc?

0 Answers  


Does jdbctemplate use prepared statements?

0 Answers  


Categories