Ejemplo n.º 1
0
        //TODO: UNIT Test
        public void SaveCharacterForceSecret(int CharacterID)
        {
            SqlDataReader      result;
            DatabaseConnection dbconn     = new DatabaseConnection();
            SqlCommand         command    = new SqlCommand();
            SqlConnection      connection = new SqlConnection(dbconn.SQLSEVERConnString);

            try
            {
                connection.Open();
                command.Connection  = connection;
                command.CommandType = CommandType.StoredProcedure;
                command.CommandText = "InsertUpdate_CharacterForceSecret";
                command.Parameters.Add(dbconn.GenerateParameterObj("@ForceSecretID", SqlDbType.Int, ForceSecretID.ToString(), 0));
                command.Parameters.Add(dbconn.GenerateParameterObj("@CharacterID", SqlDbType.Int, CharacterID.ToString(), 0));
                result = command.ExecuteReader();

                result.Read();
                SetReaderToObject(ref result);
            }
            catch
            {
                Exception e = new Exception();
                this._insertUpdateOK = false;
                this._insertUpdateMessage.Append(e.Message + "                     Inner Exception= " + e.InnerException);
                throw e;
            }
            finally
            {
                command.Dispose();
                connection.Close();
            }

            //finally
            //{
            //    command.Dispose();
            //    connection.Close();
            //}
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Deletes the extra class item.
        /// </summary>
        /// <returns></returns>
        public bool DeleteForceSecret()
        {
            SqlDataReader      result;
            DatabaseConnection dbconn     = new DatabaseConnection();
            SqlCommand         command    = new SqlCommand();
            SqlConnection      connection = new SqlConnection(dbconn.SQLSEVERConnString);

            try
            {
                connection.Open();
                command.Connection  = connection;
                command.CommandType = CommandType.StoredProcedure;
                command.CommandText = "Delete_ForceSecret";
                command.Parameters.Add(dbconn.GenerateParameterObj("@ForceSecretID", SqlDbType.Int, ForceSecretID.ToString(), 0));
                result = command.ExecuteReader();
            }
            catch
            {
                Exception e = new Exception();
                this._deleteOK = false;
                this._deletionMessage.Append(e.Message + "                     Inner Exception= " + e.InnerException);
                throw e;
            }
            finally
            {
                command.Dispose();
                connection.Close();
            }
            return(this.DeleteOK);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Saves the force secret.
        /// </summary>
        /// <returns>A ForceSecret object</returns>
        public ForceSecret SaveForceSecret()
        {
            SqlDataReader      result;
            DatabaseConnection dbconn     = new DatabaseConnection();
            SqlCommand         command    = new SqlCommand();
            SqlConnection      connection = new SqlConnection(dbconn.SQLSEVERConnString);

            try
            {
                connection.Open();
                command.Connection  = connection;
                command.CommandType = CommandType.StoredProcedure;
                command.CommandText = "InsertUpdate_ForceSecret";
                command.Parameters.Add(dbconn.GenerateParameterObj("@ForceSecretID", SqlDbType.Int, ForceSecretID.ToString(), 0));
                command.Parameters.Add(dbconn.GenerateParameterObj("@ForceSecretName", SqlDbType.VarChar, ForceSecretName.ToString(), 50));
                command.Parameters.Add(dbconn.GenerateParameterObj("@ForceSecretDescription", SqlDbType.VarChar, ForceSecretDescription.ToString(), 500));
                result = command.ExecuteReader();

                result.Read();
                SetReaderToObject(ref result);
            }
            catch
            {
                Exception e = new Exception();
                this._insertUpdateOK = false;
                this._insertUpdateMessage.Append(e.Message + "                     Inner Exception= " + e.InnerException);
                throw e;
            }
            finally
            {
                command.Dispose();
                connection.Close();
            }
            return(this);
        }