Can any one tell me how can I create unique ID? For example:
Account id 9845673333
Account id 9845673334
Account id 9845673335
Account id 9845673336
Can any one tell me how can I create unique ID? For example:
Account id 9845673333
Account id 9845673334
Account id 9845673335
Account id 9845673336
You can just have a stored integer value starting from 1, and increment it each time you need to issue a new account id.
Then, it will always be unique.