Name for Sql Table
-
Can you please suggest any meaningful name for new table. Purpose: Table will be used to store the email/sms template details like title, messagecontent,etc. This template title will be displayed in a dropdown list, users can choose templates from dropdown and send it. :rolleyes:
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
Can you please suggest any meaningful name for new table. Purpose: Table will be used to store the email/sms template details like title, messagecontent,etc. This template title will be displayed in a dropdown list, users can choose templates from dropdown and send it. :rolleyes:
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
Why do you want to use the database table name as title for a dropdown list? Just name the table something like message_template. The list title belongs to the GUI and using the database table name makes no sense when you have to support multiple languages. Choose a title descriptive enough to be understand by the users.
-
Why do you want to use the database table name as title for a dropdown list? Just name the table something like message_template. The list title belongs to the GUI and using the database table name makes no sense when you have to support multiple languages. Choose a title descriptive enough to be understand by the users.
No, I'll not display the table name in dropdown,only the title column from the table.
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
No, I'll not display the table name in dropdown,only the title column from the table.
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
OK. But that is a value stored in the database and usually entered by the user (there would be no need to store that if it is a fixed title).
-
Why do you want to use the database table name as title for a dropdown list? Just name the table something like message_template. The list title belongs to the GUI and using the database table name makes no sense when you have to support multiple languages. Choose a title descriptive enough to be understand by the users.
Can you suggest few more names which is more suitable for my table please ?
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
Can you suggest few more names which is more suitable for my table please ?
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
Only you know what the table is storing and what would be a suitable name. Because the database design is usually not public, only the developers will use it. So I suggest to use the general rules for database names (and also variables and function names in programming languages): Use one that describes it, may be not confused with similar names in the same context (e.g. multiple tables containing some kind of templates), but is not too long.
-
OK. But that is a value stored in the database and usually entered by the user (there would be no need to store that if it is a fixed title).
yeah, but there is a UI for user to create their own templates with template title, So, later when they want to send email/sms they will choose accordingly.
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
Can you please suggest any meaningful name for new table. Purpose: Table will be used to store the email/sms template details like title, messagecontent,etc. This template title will be displayed in a dropdown list, users can choose templates from dropdown and send it. :rolleyes:
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
Can you please suggest any meaningful name for new table. Purpose: Table will be used to store the email/sms template details like title, messagecontent,etc. This template title will be displayed in a dropdown list, users can choose templates from dropdown and send it. :rolleyes:
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
-
Can you please suggest any meaningful name for new table. Purpose: Table will be used to store the email/sms template details like title, messagecontent,etc. This template title will be displayed in a dropdown list, users can choose templates from dropdown and send it. :rolleyes:
நெஞ்சு பொறுக்கு திலையே-இந்த நிலைகெட்ட மனிதரை நினைந்துவிட்டால்
notification_template 'notification' because it applies to email and sms. 'template' because although the are properties the group actual serves as a template for what the notification will be. Underscore to separate the two nouns. Should not be 'templates' plural because by definition a table is already a set. And there are cases where one wants a table to contain more than one row/record as a 'set'. In those cases the table might be better named with the plural.