c# store user settings in database - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:59:32Zhttp://stackoverflow.com/feeds/question/171352http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/171352/c-store-user-settings-in-database1c# store user settings in databasepetebob7962008-10-05T02:06:34Z2008-10-05T04:32:11Z
<p>Is there an easy method to store a person's user settings in a sql 2000 database. Ideally all settings in one field so I don't keep having to edit the table every time I add a setting. I am thinking along the lines of serialize a settings class if anyone has an example.</p>
<p>The reason I don't want to use the built in .NET user settings stored in persistent storage is work uses super mandatory profiles so upon a users log off the settings are cleared which is a pain. I posted asking for any solutions to this previously but didn't get much of a response.</p>
http://stackoverflow.com/questions/171352/c-store-user-settings-in-database/171354#1713541Answer by Joel Martinez for c# store user settings in databaseJoel Martinez2008-10-05T02:10:11Z2008-10-05T02:10:11Z<p>you can easily serialize classes in C#: <a href="http://www.google.com/search?q=c%23+serializer" rel="nofollow">http://www.google.com/search?q=c%23+serializer</a>. You can either store the XML in a varchar field, or if you want to use the binary serializer, you can store it in an "Image" datatype, which is really just binary.</p>
http://stackoverflow.com/questions/171352/c-store-user-settings-in-database/171358#1713581Answer by Mitch Wheat for c# store user settings in databaseMitch Wheat2008-10-05T02:15:53Z2008-10-05T02:15:53Z<p>You could serialize into a database, or you could create a User settings table containing Name-Value pairs and keyed by UserId. The advantage of doing it this way is it's easier to query and update through RDMS tools.</p>
http://stackoverflow.com/questions/171352/c-store-user-settings-in-database/171467#1714670Answer by Jeffrey L Whitledge for c# store user settings in databaseJeffrey L Whitledge2008-10-05T04:08:05Z2008-10-05T04:08:05Z<p>First you need your table.</p>
<pre><code>create table user_settings
(
user_id nvarchar(256) not null,
keyword nvarchar(64) not null,
constraint PK_user_settings primary key (user_id, keyword),
value nvarchar(max) not null
)
</code></pre>
<p>Then you can build your API:</p>
<pre><code>public string GetUserSetting(string keyword, string defaultValue);
public void SetUserSetting(string keyword, string value);
</code></pre>
<p>If you're already doing CRUD development (which I assume from the existence and availability of a database), then this should be trivially easy to implement.</p>
http://stackoverflow.com/questions/171352/c-store-user-settings-in-database/171488#1714882Answer by Bob Nadler for c# store user settings in databaseBob Nadler2008-10-05T04:32:11Z2008-10-05T04:32:11Z<p>The VS designer keeps property settings in the <a href="http://msdn.microsoft.com/en-us/library/system.configuration.applicationsettingsbase.aspx" rel="nofollow">ApplicationSettingsBase</a> class. By default, these properties are serialized/deserialized into a per user XML file. You can override this behavior by using a custom <a href="http://msdn.microsoft.com/en-us/library/system.configuration.settingsprovider.aspx" rel="nofollow">SettingsProvider</a> which is where you can add your database functionality. Just add the <code>SettingsProvider</code> attribute to the VS generated <code>Settings</code> class:</p>
<pre><code>[SettingsProvider(typeof(CustomSettingsProvider))]
internal sealed partial class Settings {
...
}
</code></pre>
<p>A good example of this is the <a href="http://msdn.microsoft.com/en-us/library/ms181001.aspx" rel="nofollow">RegistrySettingsProvider</a>.</p>
<p>I answered another similar question the same way <a href="http://stackoverflow.com/questions/170825/how-to-serialize-systemconfigurationsettingsproperty#170932">here</a>.</p>