當前位置: 首頁>>代碼示例>>C#>>正文


C# Language_Support_Info.Add_Spanish方法代碼示例

本文整理匯總了C#中SobekCM.Library.Application_State.Language_Support_Info.Add_Spanish方法的典型用法代碼示例。如果您正苦於以下問題:C# Language_Support_Info.Add_Spanish方法的具體用法?C# Language_Support_Info.Add_Spanish怎麽用?C# Language_Support_Info.Add_Spanish使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SobekCM.Library.Application_State.Language_Support_Info的用法示例。


在下文中一共展示了Language_Support_Info.Add_Spanish方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Populate_Translations

        /// <summary> Populates the translation / language support object for translating common UI terms </summary>
        /// <param name="Translations"> Translations object to populate from the database </param>
        /// <param name="Tracer"> Trace object keeps a list of each method executed and important milestones in rendering</param>
        /// <returns> TRUE if successful, otherwise FALSE </returns>
        /// <remarks> This calls the 'SobekCM_Get_Translation' stored procedure </remarks> 
        public static bool Populate_Translations( Language_Support_Info Translations, Custom_Tracer Tracer)
        {
            if (Tracer != null)
            {
                Tracer.Add_Trace("SobekCM_Database.Populate_Translations", String.Empty);
            }

            try
            {
                // Create the connection
                using (SqlConnection connect = new SqlConnection(connectionString))
                {
                    SqlCommand executeCommand = new SqlCommand("SobekCM_Get_Translation", connect)
                                                    {CommandType = CommandType.StoredProcedure};

                    // Clear the translation information
                    Translations.Clear();

                    // Create the data reader
                    connect.Open();
                    using (SqlDataReader reader = executeCommand.ExecuteReader())
                    {
                        while (reader.Read())
                        {
                            Translations.Add_French( reader.GetString(1), reader.GetString(2));
                            Translations.Add_Spanish( reader.GetString(1), reader.GetString(3));
                        }
                        reader.Close();
                    }
                    connect.Close();
                }

                // Return the first table from the returned dataset
                return true;
            }
            catch (Exception ee)
            {
                lastException = ee;
                if (Tracer != null)
                {
                    Tracer.Add_Trace("SobekCM_Database.Populate_Translations", "Exception caught during database work", Custom_Trace_Type_Enum.Error);
                    Tracer.Add_Trace("SobekCM_Database.Populate_Translations", ee.Message, Custom_Trace_Type_Enum.Error);
                    Tracer.Add_Trace("SobekCM_Database.Populate_Translations", ee.StackTrace, Custom_Trace_Type_Enum.Error);
                }
                return false;
            }
        }
開發者ID:randomyed,項目名稱:SobekCM-Web-Application,代碼行數:52,代碼來源:SobekCM_Database.cs


注:本文中的SobekCM.Library.Application_State.Language_Support_Info.Add_Spanish方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。