⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dialect.cs

📁 HR系统,人事,能力素质,考勤,薪资等,AJAX,ASP.NET
💻 CS
字号:
using System;
using System.Configuration;

namespace iSun.SPL.Factory
{
	/// <summary>
	/// Dialect 的摘要说明。
	/// </summary>
	public class Dialects
	{
		/// <summary>
		/// 获取SQL工厂
		/// </summary>
		/// <param name="entitys"></param>
		/// <returns></returns>
		public static iSun.SPL.Factory.DialectFactory GetDialect(object entitys)
		{	
			string Type = ConfigurationSettings.AppSettings["DataType"] ;
			
			if (Type == null || Type == string.Empty)
			{
				Type = "SqlServer";
			}

			iSun.SPL.Factory.DialectFactory DF = null;
			if (Type == "SqlServer")   
			{
				DF = new  iSun.SPL.Factory.Dialect.MsSqlServer(entitys);
			}
			if(Type == "Access")
			{
				DF = new iSun.SPL.Factory.Dialect.Access(entitys);
			}
			if(Type == "Ocrale")
			{
				DF = new iSun.SPL.Factory.Dialect.Oracle(entitys);
			}
			return DF;
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -