Click here to Skip to main content
Click here to Skip to main content

Convert System.Type to SqlDbType

By , 8 Dec 2006
 

Introduction

This is a generic implementation of converting any compatible System.Type to SqlDbType for use in parameter objects.

Background

I wanted a generic method to convert system data types into a format which can be given to Parameter objects. After a lot of online search, I came across only some crude implementations which involved elaborate Select Case constructs.

Here is my implementation:

Private Function GetDBType(ByVal theType As System.Type) As SqlDbType
    Dim p1 As SqlClient.SqlParameter
    Dim tc As System.ComponentModel.TypeConverter
    p1 = New SqlClient.SqlParameter()
    tc = System.ComponentModel.TypeDescriptor.GetConverter(p1.DbType)
    If tc.CanConvertFrom(theType) Then
        p1.DbType = tc.ConvertFrom(theType.Name)
    Else
        'Try brute force
        Try
            p1.DbType = tc.ConvertFrom(theType.Name)
        Catch ex As Exception
            'Do Nothing
        End Try
    End If
    Return p1.SqlDbType
End Function

Highlights

This code uses intrinsic converters available in most objects. The object TypeConverter is the key in this case. These converters are also used by the system to persist data in XML files. The method GetConverter of TypeDescriptor retrieves the TypeConverter associated with the target object for which conversion is to be performed.

Simply use this function where needed. It will get you the SqlDbType equivalent of the System.Type passed to it as far as possible; else, by default, it will return the String data type equivalent. For SqlDbType, it gives NVarChar.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Girish Chandra
Web Developer
India India
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1 Pinmembermohamad dianaty22-Apr-13 22:41 
GeneralMy vote of 2 Pinmemberdojohansen9-Nov-09 2:35 
QuestionI cannot use this method on Compact Framework, Please Help Me PinmemberrizaSHSHKA23-May-09 1:17 
AnswerRe: I cannot use this method on Compact Framework, Please Help Me Pinmemberdonkhuan22-Dec-09 7:33 
GeneralC# version of the code Pinmembermcsjr19-Aug-08 5:58 
AnswerTry SqlMetaData PinmemberTheMega5-May-08 0:03 
GeneralI need to Convert from DbType to .NET Type PinmemberAIbanezW20-Jan-08 20:22 
QuestionWhy throw out the exception? Pinmembervarnk21-May-07 10:52 
Generaldoesn't work with byte array Pinmemberpindurav18-Feb-07 20:34 
QuestionRe: doesn't work with byte array [modified] PinmemberTheMega29-Apr-08 22:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 8 Dec 2006
Article Copyright 2006 by Girish Chandra
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid