How to Limit integer digits in a table in SQLite in a programatical way in ios?
Eg: "CREATE TABLE IF NOT EXISTS TIMINGS (ID INTEGER PRIMARY KEY AUTOINCREMENT, Phone no INT (5), TIMING TEXT)";
we have to limit the phone no to 5 digits.
It is the right way or wrong way ????
Thanks in Advance.
One way you could do this with a
check
constraint. See the documentation here.The particular syntax would be something like:
Alternatively, just make the phonenum a five character field -- you then cannot store more than five characters.