Hey guys,
I wanted to know more about this UUID for iOS.
I know some todo app that uses it as a task ID. perhaps suffixing it with their own tag or something.
I wanted to know what are the advantages of using such identifiers in SQLite instead of say a normal integer based / autoincrementing primarykey.
Apparently they are guaranteed to be unique, Can I trace a UUID to something? say date/time created or attach it to some device?
My intention is to use it in an app that has to do with Storage purposes using Sqlite and no, its not another todo app.
any any comment is appreciated.
I wanted to know more about this UUID for iOS.
UUIDs are 128-bit values which are guaranteed to be unique typically the value is based on a machines ethernet address combined with the current time since October 15, 1582.
UUIDs are string values separated by hyphens, for example, here is how a UUID may look: 13222F23-C76A-7781-0C12-0293E3B34398.
I know some todo app that uses it as a task ID. perhaps suffixing it with their own tag or something.
I wanted to know what are the advantages of using such identifiers in SQLite instead of say a normal integer based / autoincrementing primarykey.
Apparently they are guaranteed to be unique, Can I trace a UUID to something? say date/time created or attach it to some device?
My intention is to use it in an app that has to do with Storage purposes using Sqlite and no, its not another todo app.
any any comment is appreciated.