本文整理汇总了C#中SobekCM.Library.Application_State.Language_Support_Info.Clear方法的典型用法代码示例。如果您正苦于以下问题:C# Language_Support_Info.Clear方法的具体用法?C# Language_Support_Info.Clear怎么用?C# Language_Support_Info.Clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SobekCM.Library.Application_State.Language_Support_Info
的用法示例。
在下文中一共展示了Language_Support_Info.Clear方法的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;
}
}