How do I best convert a string representation into a DbType? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T15:52:36Zhttp://stackoverflow.com/feeds/question/91124http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/91124/how-do-i-best-convert-a-string-representation-into-a-dbtype0How do I best convert a string representation into a DbType?AlexDuggleby2008-09-18T09:14:55Z2008-09-24T15:55:52Z
<p>Suppose I have a string 'nvarchar(50)', which is for example the T-SQL string segment used in creating a table of that type. How do I best convert that to an enum representation of System.Data.DbType?</p>
<p>Could it handle the many different possible ways of writing the type in T-SQL, such as:</p>
<pre><code>[nvarchar](50)
nvarchar 50
</code></pre>
<p>@Jorge Table: Yes, that's handy, but isn't there a prebaked converter? Otherwise good answer.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/91124/how-do-i-best-convert-a-string-representation-into-a-dbtype/91145#911451Answer by smink for How do I best convert a string representation into a DbType?smink2008-09-18T09:18:21Z2008-09-18T09:18:21Z<p>Hope this mapping table do the job.</p>
<p><a href="http://www.carlprothman.net/Default.aspx?tabid=97" rel="nofollow">http://www.carlprothman.net/Default.aspx?tabid=97</a></p>
http://stackoverflow.com/questions/91124/how-do-i-best-convert-a-string-representation-into-a-dbtype/93449#934491Answer by John Cocktoastan for How do I best convert a string representation into a DbType?John Cocktoastan2008-09-18T15:12:04Z2008-09-18T15:12:04Z<p>My first attempt would involve using a regex to parse the two parts of the declaration (where the second part is only used for variably sized types.) Make sure that you convert the type-name to lower case when you've parsed it.</p>
<p>You could make an enum with all the various types in it (lower-cased), then use Enum.Parse to get an instance of the enum value, and then use a switch-case to get the appropriate System.Data.DbType for each enum value.</p>
<p>Kind of gross, I admit.</p>