You need to sign in to do that
Don't have an account?

AppExchange Platform Feature Suggestion: Name-Value storage.
Hi,
I'd appreciate your comments on the following suggestion, is it a good idea to have in the platoform or not?
----
A number of our applications require to store some form of persistent settings/configuration data. We have either done this within custom objects, flat-files or system registry keys. What I propose is to have a new standard object in every Salesforce.com installation that we will know is there and can be used by developers for this purpose:
My Suggestion would be to have an object called "NamedValue" which has the following attributes associated with it (in addition to the standard system info like ID, modestamp etc).
1. Name
2. Namepsace
3. StringValue (string)
4. NumberValue (number)
5. DateValue (DateTime)
---------
With such an object we could ship S-Controls, Win32 Apps, etc. all of which would know that they could store and retreive values from this storage area without having to package a seperate area for each new control written. (save namespace clashes in AppExchange downloads).
Any thoughts?
Cheers
Gareth.
I've abstracted picklists using the .NET System.Collections.NameValueCollection class to achieve similar results.
-Mike