public static int Insert(bSurveyQuestion objSurveyQuestion, SqlConnection sqlConn, SqlTransaction sqlTran) { // construct new connection and command objects SqlConnection conn = sqlConn; SqlCommand cmd = DBHelper.getSprocCmd("sprocSurveyQuestionInsert", conn); cmd.Transaction = sqlTran; SqlParameter param; // Add return value param param = new SqlParameter("@RETURN_VALUE", SqlDbType.Int); param.Direction = ParameterDirection.ReturnValue; cmd.Parameters.Add(param); // Add params param = new SqlParameter("@SurveyQuestionID", SqlDbType.Int); param.Direction = ParameterDirection.Input; param.Value = objSurveyQuestion.SurveyQuestionID; cmd.Parameters.Add(param); param = new SqlParameter("@SurveyQuestion", SqlDbType.NVarChar); param.Direction = ParameterDirection.Input; param.Value = objSurveyQuestion.SurveyQuestion; cmd.Parameters.Add(param); param = new SqlParameter("@isMain", SqlDbType.Bit); param.Direction = ParameterDirection.Input; param.Value = objSurveyQuestion.isMain; cmd.Parameters.Add(param); param = new SqlParameter("@isActive", SqlDbType.Bit); param.Direction = ParameterDirection.Input; param.Value = objSurveyQuestion.isActive; cmd.Parameters.Add(param); // open connection conn.Open(); // Execute command cmd.ExecuteNonQuery(); // get return value int retValue = 0; try { // get return value of the sproc retValue = (int)cmd.Parameters["@RETURN_VALUE"].Value; } catch (System.Exception) { // catch all possible exceptions retValue = 0; // set retValue To 0 (all ok) } // close connection conn.Close(); // set dirty flag To false if (retValue != 0) { objSurveyQuestion.SurveyQuestionID = retValue; } return(retValue); }
public static int Delete(bSurveyQuestion objSurveyQuestion) { // construct new connection and command objects SqlConnection conn = DBHelper.getConnection(); SqlCommand cmd = DBHelper.getSprocCmd("sprocSurveyQuestionDelete", conn); SqlParameter param; // add return value param param = new SqlParameter("@RETURN_VALUE", SqlDbType.Int); param.Direction = ParameterDirection.ReturnValue; cmd.Parameters.Add(param); // Add params param = new SqlParameter("@SurveyQuestionID", SqlDbType.Int); param.Direction = ParameterDirection.Input; param.Value = objSurveyQuestion.SurveyQuestionID; cmd.Parameters.Add(param); // open connection conn.Open(); // Execute command cmd.ExecuteNonQuery(); // get return value int retValue = 0; try { // get return value of the sproc retValue = (int)cmd.Parameters["@RETURN_VALUE"].Value; } catch (System.Exception) { // catch all possible exceptions retValue = 0; // set retValue To 0 (all ok) } // close connection conn.Close(); return(retValue); }