vote up 0 vote down star

I'm writing an app in dotnet, and using a dropdown checkbox.

I'm not sure what the best practice is for storing this info in the db.

Currently I'm writing back a comma delimited string to an SP in SQL 2008 ie "apple, banana, pear", storing this in a nvarchar(MAX) and then splitting this in the SP into another table holding the ID and the Type ie

ID Type
17 apple
17 banana
17 pear

Is this overkill, or the correct approach?

flag

1 Answer

vote up 2 vote down check

The important thing is to keep the database normalized. You're doing exactly that, so I'd say your approach is fine.

Passing a comma-separated string to a stored procedure is okay too. You could refine it with tables parameters or multiple procedure calls, but those have a significant overhead in development time and performance.

link|flag
Thanks for confirming that. – Mitch Oct 21 at 19:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.