Reputation: 10432
Just curious to know why all the tables and Entities show up with a Z prefix in front of their names when i browse them with a SQLite database browser. The entity in my DB is named Assignment in code, and when i browse it, its named ZASSIGNMENT.
Upvotes: 6
Views: 1257
Reputation: 46543
It may be a naming convention by Team Apple for Core Data SQLite.
Reason may be :
Z is one of the least used letters of the alphabet. So less chances of name collision.
Using Z in capital makes it stand out as it will be shown as last in the list.
Even SAP uses Z as prefix in their table names.
Upvotes: 2