How do you determine the actual SQL data type of a SqlParameter (the type expected by the SQL Server)?
Options
- It is the .NET Framework data type in your application that the parameter represents.
- It is the type of column or data in SQL Server that the command expects.
- It is the type of column in a DataTable that it represents.
- It is any type defined in the SqlDbDataType enumeration.
CORRECT ANSWER : It is the type of column or data in SQL Server that the command expects.
Write your comments