
What are the limitations of JDBC?

Limitations Of JDBC:
JDBC persistence logic supports SQL statements based programing, these are database s/w dependent statements. So JDBC persistence logic is database s/w dependent persistence logic.That's means if we want to change database s/w in the middle of project development it is not possible,we have to re develop JDBC persistence logic for other database s/w's.
Solution:To overcome this problem we have to go for ORM -framework s/w's based persistence logic (ex: Hibernate, ibaties, toplink,..etc).
By default JDBC ResultSet object is not serializable, so we can not send that object over the network.To overcome this RowSet introduced but that is not supporting for all JDBC drivers.
Solution:We have to take the support of DTO(Data Transfer Object)/VO(Value Object) design pattern.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.