What does insert(), delete(), select() and update() of the MyBatis SqlSession Interface return?

StackOverflow https://stackoverflow.com/questions/5898504

  •  29-10-2019
  •  | 
  •  

سؤال

From the API Doc of mybatis i can just see, that insert, delete, select and update has an int as the returntype. But there is no documentation about what the meaning of the returned integers is.

Does this has something to do with Success of the operation?

هل كانت مفيدة؟

المحلول

select() doesn't return anything. The others return the number of affected rows.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top