iBatis - for beginners
iBatis is a Data persistence framework like Hibernate , JDO and EJB that maps objects to SQL statements. It is a lightweight framework and persistence API good for persisting POJOs ( P lain O ld J ava O bjects). iBatis is different from Hibernate , JDO since it uses stored procedures and existing SQL to handle database. In this tutorial we are going to tell you iBatis configuration for a small application to run. As it is hard to explain everything in one go? so we have presented this tutorial into few separate examples. This example is all about to read data from the database and showing the results on your command prompt. In the second example you will learn to add more data into the database and after that third example is going to show you how to delete the data from the records using iBatis. Now in the first example that is going to show records from t...