ibatis教程_查询所有的对象(对student进行增删改查)

CRUD

借助sqlMapClient中的方法:

 queryForObject

 queryForList

 insert

 delete

 update

 

Student.xml内容:

 

<typeAlias alias="Student" type="com.future.Student"/>

 

<select id="selectAllStudents" resultClass="Student">

                  select * from Student

</select>

你可能感兴趣的:(ibatis教程_查询所有的对象(对student进行增删改查))