Anybody know what does it mean base property in @IndexColumn annotation?
And what a different between base=0 and base=1
Anybody know what does it mean base property in @IndexColumn annotation? And what a
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Judging from IndexColumn API base property is index in DB start from base which default to 0.
It means what is the starting point in your database for indexing. Java arrays are 0-based, but in database you might have 1..n values, where
basewould be 1 then. eg.: