How can a java objects be stored in database?
Answers were Sorted based on User's Feedback
Answer / dinesh
Java object get serilized by Implenting Serilizable
INterface then
Java objects stores through JDBC connection or Datasource
to Database.By using SQL query or HQL using Hibernate.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rajj
jav objects implements serializable or externalizable
interfaces.
ByteStreams are used to store the objects..
setOjects(), setBlob(),and setClob() methods are used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why do we need a jdbcrowset like wrapper around resultset?
What is the benefit of having jdbcrowset implementation? Why do we need a jdbcrowset like wrapper around resultset?
what does batchUpdate does?
What are restrictions on triggers?
What do you mean by jdbc batch processing and what are the advantages of using jdbc batch processing?
How can we retrieve the file in the oracle database?
What are the 4 types of jdbc drivers?
Is jdbc database independent?
If iam using JDBC API, do I also have to use ODBC?
What are database warnings in jdbc and how can we handle database warnings in jdbc?
Is jdbc faster than odbc?
What is PreparedStatement?