本文整理汇总了C#中DBType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# DBType.ToString方法的具体用法?C# DBType.ToString怎么用?C# DBType.ToString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBType
的用法示例。
在下文中一共展示了DBType.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateDbObj
public static IDbObject CreateDbObj(DBType dbtype,string connStr)
{
return CreateDbObj(dbtype.ToString(),connStr);
}
示例2: Get
internal static SqlType Get(DBType dbType, int length)
{
string key = GetKeyForLengthBased(dbType.ToString(), length);
SqlType result;
if (!SqlTypes.TryGetValue(key, out result))
{
result = new SqlType(dbType, length);
lock (SqlTypes)
SqlTypes.Add(key, result);
}
return result;
}
示例3: SetWebConfig
//设置web.config
private void SetWebConfig(string connectionString, DBType dbType, out ConcurrentDictionary<string, string> messages)
{
messages = new ConcurrentDictionary<string, string>();
System.IO.FileInfo FileInfo = new FileInfo(Server.MapPath("~/web.config"));
if (!FileInfo.Exists)
{
messages[string.Format("文件 : {0} 不存在", Server.MapPath("~/web.config"))] = "";
}
XElement rootElement = XElement.Load(FileInfo.FullName);
XElement connectionStringsElement = rootElement.Descendants("connectionStrings").FirstOrDefault();
if (connectionStringsElement != null && connectionStringsElement.HasElements)
{
XElement element = connectionStringsElement.Elements("add").LastOrDefault(n => n.NodeType != XmlNodeType.Comment);
if (element != null)
{
try
{
element.Attribute("name").Value = dbType.ToString();
element.Attribute("connectionString").Value = connectionString;
element.SetAttributeValue("providerName", GetProviderName(dbType));
}
catch (Exception e)
{
messages[e.Message] = e.StackTrace;
}
}
}
rootElement.Save(FileInfo.FullName);
}