• 大小: 5.09KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: C#
  • 标签: c#  

资源简介


从Hibernate中提取的SQL格式化功能,去除了没用的功能,没有第三方dll

资源截图

代码片段和文件信息

namespace NHibernate.AdoNet.Util
{
    using NHibernate.Util;
    using System;
    using System.Collections.Generic;
    using System.Text;

    public class BasicFormatter : IFormatter
    {
        protected static readonly HashSet beginClauses = new HashSet();
        protected static readonly HashSet dml = new HashSet();
        protected static readonly HashSet endClauses = new HashSet();
        protected const string IndentString = “    “;
        protected const string Initial = “\n    “;
        protected static readonly HashSet logical = new HashSet();
        protected static readonly HashSet misc = new HashSet();
        protected static readonly HashSet quantifiers = new HashSet();

        static BasicFormatter()
        {
            beginClauses.Add(“left“);
            beginClauses.Add(“right“);
            beginClauses.Add(“inner“);
            begin

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      15007  2016-10-18 22:34  sqlformatter\BasicFormatter.cs

     文件       4673  2016-10-18 22:25  sqlformatter\DdlFormatter.cs

     文件       1495  2016-10-18 22:25  sqlformatter\Formatstyle.cs

     文件        152  2016-10-18 22:25  sqlformatter\IFormatter.cs

     文件        981  2016-10-18 22:25  sqlformatter\Program.cs

     文件       3306  2016-10-18 22:25  sqlformatter\StringTokenizer.cs

     目录          0  2016-10-18 22:40  sqlformatter

----------- ---------  ---------- -----  ----

                25614                    7


评论

共有 条评论