标签: c# mysql
`parameter = command.CreateParameter ("Num",DB.adSmallInt, DB.adParamInput,2, anyValue)`
我想知道类型是
DB.adSmallInt
和
size = 2
大小是多少 2字节? 要么 2位? 它将在哪个单元配置?
答案 0 :(得分:0)
size参数将被忽略,因为adSmallInt的大小是两个字节, 并在SQL服务器端转换为smallint。