在access中,只能设置数字类型,而具体的整型,长整型,单精度型,双精度型,小数,字节等则需要在字段大小中定义。而在.NET Framework中,却分别对应不同的数据类型。因此需要对Access的数字类型区别对待。他们的对应关系如下:
字节类型对应System.Byte,整型对应System.Int16,长整形对应System.Int32,单精度型对应System.Single,双精度型对应System.Double,小数对应System.Decimal,至于同步复制ID的类型则对应System.Guid,所以必须区别对待,在VB或者C# 中应该用不同的关键字定义变量。您可以参考以下文章了解VB和C#中的数据类型:
Visual Basic Language Reference Data Type Summary
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vagrpdatatype.asp
C# Language Specification 4.1.4 Integral types
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/csspec/html/vclrfcsharpspec_4_1_4.asp
微软全球技术中心 VB技术支持
本贴子以“现状”提供且没有任何担保,同时也没有授予任何权利。具体事项可参见使用条款(http://support.microsoft.com/directory/worldwide/zh-cn/community/terms_chs.asp)。
字节类型对应System.Byte,整型对应System.Int16,长整形对应System.Int32,单精度型对应System.Single,双精度型对应System.Double,小数对应System.Decimal,至于同步复制ID的类型则对应System.Guid,所以必须区别对待,在VB或者C# 中应该用不同的关键字定义变量。您可以参考以下文章了解VB和C#中的数据类型:
Visual Basic Language Reference Data Type Summary
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vagrpdatatype.asp
C# Language Specification 4.1.4 Integral types
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/csspec/html/vclrfcsharpspec_4_1_4.asp
微软全球技术中心 VB技术支持
本贴子以“现状”提供且没有任何担保,同时也没有授予任何权利。具体事项可参见使用条款(http://support.microsoft.com/directory/worldwide/zh-cn/community/terms_chs.asp)。