VB.NET numeric data-types & SQL-Server

  • Thread starter Thread starter John A Grandy
  • Start date Start date
J

John A Grandy

how do VB.NET numeric data-types match-up to SQL-Server numeric data-types ?

is it safe to use declare VB.NET variables of type Integer to contain SQL
Server columns of type Integer ?
 
Hi John,

I use integers in vb .net to match against ints in sql server all the time -
no problems. I also use double to match against money cols, and sometimes
decimal - I haven't had any problems with either.

HTH,

Bernie Yaeger
 
Back
Top