public static int Insert(bRoles objRoles, SqlConnection sqlConn, SqlTransaction sqlTran) { // construct new connection and command objects SqlConnection conn = sqlConn; SqlCommand cmd = DBHelper.getSprocCmd("sprocRolesInsert", 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("@RoleID", SqlDbType.Int); param.Direction = ParameterDirection.Input; param.Value = objRoles.RoleID; cmd.Parameters.Add(param); param = new SqlParameter("@Description", SqlDbType.NVarChar); param.Direction = ParameterDirection.Input; param.Value = objRoles.Description; 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) { objRoles.RoleID = retValue; } return(retValue); }
public static int Delete(bRoles objRoles) { // construct new connection and command objects SqlConnection conn = DBHelper.getConnection(); SqlCommand cmd = DBHelper.getSprocCmd("sprocRolesDelete", 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("@RoleID", SqlDbType.Int); param.Direction = ParameterDirection.Input; param.Value = objRoles.RoleID; 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); }