/// <summary> Refresh the list of search stop words for database searching by pulling the data back from the database </summary>
        /// <returns> TRUE if successful, otherwise FALSE </returns>
        public static bool RefreshStopWords()
        {
            try
            {
                lock (searchStopWordsLock)
                {
                    if (searchStopWords != null)
                    {
                        searchStopWords.Clear();
                    }
                    searchStopWords = Engine_Database.Search_Stop_Words(null);
                }

                return(true);
            }
            catch
            {
                return(false);
            }
        }