Actual SQL data type of SqlParameter - ADO.NET
Q. How do you determine the actual SQL data type of a SqlParameter (the type expected by the SQL Server)?- Published on 19 Oct 15a. It is the .NET Framework data type in your application that the parameter represents.
b. It is the type of column or data in SQL Server that the command expects.
c. It is the type of column in a DataTablethat it represents.
d. It is any type defined in the SqlDbDataTypeenumeration.
ANSWER: It is the type of column or data in SQL Server that the command expects.