J
Jim Douglas
All of a sudden I can't get this to work? I am connecting to the database
and executing the storedProcedure but have no results returned. If I execute
from SQLServer query tool it returns results fine? I am using the Microsoft
DataAccess Block V1.
public DataSet GetAftaValidateUser(string parmUserID, string
parmUserPassword)
{
string connectionString = this.devConnectionString;
DataSet myDS;
// Populate our DataSet
myDS = SqlHelper.ExecuteDataset(connectionString,
CommandType.StoredProcedure,
"p_ValidateUserParms",
new SqlParameter("@pEmail",64),
new SqlParameter("@pPassword",16));
// Return results
return myDS;
}
and executing the storedProcedure but have no results returned. If I execute
from SQLServer query tool it returns results fine? I am using the Microsoft
DataAccess Block V1.
public DataSet GetAftaValidateUser(string parmUserID, string
parmUserPassword)
{
string connectionString = this.devConnectionString;
DataSet myDS;
// Populate our DataSet
myDS = SqlHelper.ExecuteDataset(connectionString,
CommandType.StoredProcedure,
"p_ValidateUserParms",
new SqlParameter("@pEmail",64),
new SqlParameter("@pPassword",16));
// Return results
return myDS;
}