I am reading a CSV file via OleDBConnection, retrieving integer values for some fields there and saving to SQL DB. I have a column named Q3
which is nullable.
When I try the following below, it works well:
create table #temp (num int);
insert into #temp (num) values (null);
However, I have the following code in asp.net 4.5, which is not working:
SQLDatabase sql = new SQLDatabase();
SQLParamList sqlParams = new SQLParamList();
int? Q3 = null;
Q3 = CheckNumericContent(r, dr, "Q3"); //Q3 empty cell for the row in csv.
sqlParams.Add("@Q3", Q3); //Q3 is still null here.
sql.ExecStoredProcedureDataTable("[spInsert_Data]", sqlParams);
The code of CheckNumericContent
function is here:
private int? CheckNumericContent(int r, DataRow dr, string columnname)
{
int ret = -1;
if (dr[columnname] != null && !String.IsNullOrEmpty(dr[columnname].ToString()))
{
try
{
if (!Int32.TryParse(dr[columnname].ToString(), out ret))
{
ErrorMessage = ErrorMessage + string.Format("Row {0}: {1) is not numeric.\n", r.ToString(), columnname);
}
}
catch (Exception ex)
{
ErrorMessage = ErrorMessage + "some error: "+ex.ToString();
}
return ret;
}
else
{
return null;
}
}
spInsert_Data stored Procedure is (Sql Server 2014):
CREATE PROCEDURE spInsert_Data
@Q3 int
AS BEGIN
insert into tblMyData (Q3) values (@Q3);
END
This code works well unless Q3 is null. When Q3 is null, which means there is no data for Q3 for a row in the CSV, it is giving the error:
Procedure or function 'spInsert_Data' expects parameter '@Q3', which was not supplied.
Picture of the error is on the below. What is wrong and how can I fix it? Any help would be appreciated!