2015-12-01から1ヶ月間の記事一覧

SqlUtil.cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlUtil { /** * 文字列を置き換える. 同一文字列内に複数の変換対象があってもよい。 * * @param …

SqlTokenConstants.cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlTokenConstants { /** * 項目番号:1<br> * 空文字. TAB,CR等も1つの文字列として含む。 */ public …

SqlToken .cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlToken : AbstractSqlToken { /** * SQLトークンのインスタンスを作成します。 * * @param argTy…

SqlRule.cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlRule { /** キーワードの変換規則. */ public int keyword = KEYWORD_UPPER_CASE; /** キーワー…

SqlParser.cs

using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlParser { /** * 解析前の文字列 */ private String fBefore; /** * …

SqlFormatterException.cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlFormatterException : Exception { /** * 例外のコンストラクタ */ public SqlFormatterExcepti…

SqlFormatter.cs

using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlFormatter { private SqlParser fParser = new SqlParser(); privat…

SqlConstants.cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class SqlConstants { /** * ANSI SQL キーワード */ public static readonly String[] SQL_RESERVED_WOR…

AbstractSqlToken.cs

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SQLFormatter { class AbstractSqlToken { /** * フィールド [type] * * 項目の型 [int]<br> * トークン種別をあらわします。…

test

2年ぶりtest