tags:

views:

270

answers:

2

How do I pass a BigInt value to SQL Server?

+3  A: 

A BigInt in SQL Server is equivalent to the int64 type in VB.NET.

Robert Harvey
A: 
insert into Table(bigintField) values(42)
x2