Data Type Equivalents

  • Thread starter Thread starter Elmo Watson
  • Start date Start date
E

Elmo Watson

I know that Varchar in SQL Server is String in VB.Net, and INT is
Integer - - but I'm not sure I'm aware of all of them

Does anyone know of a good list which shows the equivalent data types from
SQL Server to VB.Net?
 
I just need a website or url that lists all of them on a page
searching for SqlDbType gives me 282 possibilities
clicking on the MSDN link just gives me a list of SQL data types

I need a list that gives the .Net equivalents to the SQL data types (or vice
versa), like:
varchar -- string
int -- Integer

........etc
 
Look up SqlDbType Enumeration.

I just need a website or url that lists all of them on a page
searching for SqlDbType gives me 282 possibilities
clicking on the MSDN link just gives me a list of SQL data types

I need a list that gives the .Net equivalents to the SQL data types (or
vice
versa), like:
varchar -- string
int -- Integer

.......etc
 
Back
Top