C# 클래스 PetShop.Data.SqlUtil

파일 보기 프로젝트 열기: netTiers/netTiers 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
AND String
ASC String
COMMA String
DESC String
LEFT String
NULL String
OR String
PAGE_INDEX String
QUOTE String
RIGHT String
STAR String
TOKEN String
WILD String

공개 메소드들

메소드 설명
Contains ( String value ) : String

Encodes the value for a SqlComparisonType.Contains expression.

Contains ( String column, String value ) : String

Creates a SqlComparisonType.Contains expression.

Contains ( String column, String value, bool ignoreCase ) : String

Creates a SqlComparisonType.Contains expression.

Contains ( String column, String value, bool ignoreCase, bool surround ) : String

Creates a SqlComparisonType.Contains expression.

Encode ( String value ) : String

Encodes the specified value for use in SQL expressions.

Encode ( String value, bool surround ) : String

Encodes the specified value for use in SQL expressions and optionally surrounds the value with single-quotes.

EndsWith ( String value ) : String

Encodes the value for a SqlComparisonType.EndsWith expression.

EndsWith ( String column, String value ) : String

Creates a SqlComparisonType.EndsWith expression.

EndsWith ( String column, String value, bool ignoreCase ) : String

Creates a SqlComparisonType.EndsWith expression.

EndsWith ( String column, String value, bool ignoreCase, bool surround ) : String

Creates a SqlComparisonType.EndsWith expression.

Equals ( String value ) : String

Encodes the value for a SqlComparisonType.Equals expression.

Equals ( String column, String value ) : String

Creates an SqlComparisonType.Equals expression.

Equals ( String column, String value, bool ignoreCase ) : String

Creates an SqlComparisonType.Equals expression.

Equals ( String column, String value, bool ignoreCase, bool surround ) : String

Creates an SqlComparisonType.Equals expression.

GetEqualFormat ( bool ignoreCase ) : String

Gets the equal format string.

GetEqualFormat ( bool ignoreCase, bool surround ) : String

Gets the equal format string.

GetLikeFormat ( bool ignoreCase ) : String

Gets the like format string.

GetLikeFormat ( bool ignoreCase, bool surround ) : String

Gets the like format string.

GetNotLikeFormat ( bool ignoreCase ) : String

Gets the not like format string.

GetNotLikeFormat ( bool ignoreCase, bool surround ) : String

Gets the not like format string.

IsNotNull ( String column ) : String

Creates an IS NOT NULL expression.

IsNull ( String column ) : String

Creates an IS NULL expression.

Like ( String value ) : String

Encodes the value for a SqlComparisonType.Like expression.

Like ( String column, String value ) : String

Creates a SqlComparisonType.Like expression.

Like ( String column, String value, bool ignoreCase ) : String

Creates a SqlComparisonType.Like expression.

Like ( String column, String value, bool ignoreCase, bool surround ) : String

Creates a SqlComparisonType.Like expression.

NotContains ( String value ) : String

Encodes the value for a SqlComparisonType.NotContains expression.

NotContains ( String column, String value ) : String

Creates a SqlComparisonType.NotContains expression.

NotContains ( String column, String value, bool ignoreCase ) : String

Creates a SqlComparisonType.NotContains expression.

NotContains ( String column, String value, bool ignoreCase, bool surround ) : String

Creates a SqlComparisonType.NotContains expression.

NotLike ( String value ) : String

Encodes the value for a SqlComparisonType.NotLike expression.

NotLike ( String column, String value ) : String

Creates a SqlComparisonType.NotLike expression.

NotLike ( String column, String value, bool ignoreCase ) : String

Creates a SqlComparisonType.NotLike expression.

NotLike ( String column, String value, bool ignoreCase, bool surround ) : String

Creates a SqlComparisonType.NotLike expression.

StartsWith ( String value ) : String

Encodes the value for a SqlComparisonType.StartsWith expression.

StartsWith ( String column, String value ) : String

Creates a SqlComparisonType.StartsWith expression.

StartsWith ( String column, String value, bool ignoreCase ) : String

Creates a SqlComparisonType.StartsWith expression.

StartsWith ( String column, String value, bool ignoreCase, bool surround ) : String

Creates a SqlComparisonType.StartsWith expression.

메소드 상세

Contains() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.Contains expression.
public static Contains ( String value ) : String
value String The value.
리턴 String

Contains() 공개 정적인 메소드

Creates a SqlComparisonType.Contains expression.
public static Contains ( String column, String value ) : String
column String
value String
리턴 String

Contains() 공개 정적인 메소드

Creates a SqlComparisonType.Contains expression.
public static Contains ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

Contains() 공개 정적인 메소드

Creates a SqlComparisonType.Contains expression.
public static Contains ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

Encode() 공개 정적인 메소드

Encodes the specified value for use in SQL expressions.
public static Encode ( String value ) : String
value String
리턴 String

Encode() 공개 정적인 메소드

Encodes the specified value for use in SQL expressions and optionally surrounds the value with single-quotes.
public static Encode ( String value, bool surround ) : String
value String
surround bool
리턴 String

EndsWith() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.EndsWith expression.
public static EndsWith ( String value ) : String
value String The value.
리턴 String

EndsWith() 공개 정적인 메소드

Creates a SqlComparisonType.EndsWith expression.
public static EndsWith ( String column, String value ) : String
column String
value String
리턴 String

EndsWith() 공개 정적인 메소드

Creates a SqlComparisonType.EndsWith expression.
public static EndsWith ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

EndsWith() 공개 정적인 메소드

Creates a SqlComparisonType.EndsWith expression.
public static EndsWith ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

Equals() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.Equals expression.
public static Equals ( String value ) : String
value String The value.
리턴 String

Equals() 공개 정적인 메소드

Creates an SqlComparisonType.Equals expression.
public static Equals ( String column, String value ) : String
column String
value String
리턴 String

Equals() 공개 정적인 메소드

Creates an SqlComparisonType.Equals expression.
public static Equals ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

Equals() 공개 정적인 메소드

Creates an SqlComparisonType.Equals expression.
public static Equals ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

GetEqualFormat() 공개 정적인 메소드

Gets the equal format string.
public static GetEqualFormat ( bool ignoreCase ) : String
ignoreCase bool if set to true [ignore case].
리턴 String

GetEqualFormat() 공개 정적인 메소드

Gets the equal format string.
public static GetEqualFormat ( bool ignoreCase, bool surround ) : String
ignoreCase bool if set to true [ignore case].
surround bool
리턴 String

GetLikeFormat() 공개 정적인 메소드

Gets the like format string.
public static GetLikeFormat ( bool ignoreCase ) : String
ignoreCase bool if set to true [ignore case].
리턴 String

GetLikeFormat() 공개 정적인 메소드

Gets the like format string.
public static GetLikeFormat ( bool ignoreCase, bool surround ) : String
ignoreCase bool if set to true [ignore case].
surround bool
리턴 String

GetNotLikeFormat() 공개 정적인 메소드

Gets the not like format string.
public static GetNotLikeFormat ( bool ignoreCase ) : String
ignoreCase bool if set to true [ignore case].
리턴 String

GetNotLikeFormat() 공개 정적인 메소드

Gets the not like format string.
public static GetNotLikeFormat ( bool ignoreCase, bool surround ) : String
ignoreCase bool if set to true [ignore case].
surround bool
리턴 String

IsNotNull() 공개 정적인 메소드

Creates an IS NOT NULL expression.
public static IsNotNull ( String column ) : String
column String
리턴 String

IsNull() 공개 정적인 메소드

Creates an IS NULL expression.
public static IsNull ( String column ) : String
column String
리턴 String

Like() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.Like expression.
public static Like ( String value ) : String
value String The value.
리턴 String

Like() 공개 정적인 메소드

Creates a SqlComparisonType.Like expression.
public static Like ( String column, String value ) : String
column String
value String
리턴 String

Like() 공개 정적인 메소드

Creates a SqlComparisonType.Like expression.
public static Like ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

Like() 공개 정적인 메소드

Creates a SqlComparisonType.Like expression.
public static Like ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

NotContains() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.NotContains expression.
public static NotContains ( String value ) : String
value String The value.
리턴 String

NotContains() 공개 정적인 메소드

Creates a SqlComparisonType.NotContains expression.
public static NotContains ( String column, String value ) : String
column String
value String
리턴 String

NotContains() 공개 정적인 메소드

Creates a SqlComparisonType.NotContains expression.
public static NotContains ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

NotContains() 공개 정적인 메소드

Creates a SqlComparisonType.NotContains expression.
public static NotContains ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

NotLike() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.NotLike expression.
public static NotLike ( String value ) : String
value String The value.
리턴 String

NotLike() 공개 정적인 메소드

Creates a SqlComparisonType.NotLike expression.
public static NotLike ( String column, String value ) : String
column String
value String
리턴 String

NotLike() 공개 정적인 메소드

Creates a SqlComparisonType.NotLike expression.
public static NotLike ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

NotLike() 공개 정적인 메소드

Creates a SqlComparisonType.NotLike expression.
public static NotLike ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

StartsWith() 공개 정적인 메소드

Encodes the value for a SqlComparisonType.StartsWith expression.
public static StartsWith ( String value ) : String
value String The value.
리턴 String

StartsWith() 공개 정적인 메소드

Creates a SqlComparisonType.StartsWith expression.
public static StartsWith ( String column, String value ) : String
column String
value String
리턴 String

StartsWith() 공개 정적인 메소드

Creates a SqlComparisonType.StartsWith expression.
public static StartsWith ( String column, String value, bool ignoreCase ) : String
column String
value String
ignoreCase bool
리턴 String

StartsWith() 공개 정적인 메소드

Creates a SqlComparisonType.StartsWith expression.
public static StartsWith ( String column, String value, bool ignoreCase, bool surround ) : String
column String
value String
ignoreCase bool
surround bool
리턴 String

프로퍼티 상세

AND 공개적으로 정적으로 프로퍼티

SQL AND keyword.
public static String AND
리턴 String

ASC 공개적으로 정적으로 프로퍼티

SQL ASC keyword.
public static String ASC
리턴 String

COMMA 공개적으로 정적으로 프로퍼티

Delimiter for optional search terms.
public static String COMMA
리턴 String

DESC 공개적으로 정적으로 프로퍼티

SQL DESC keyword.
public static String DESC
리턴 String

LEFT 공개적으로 정적으로 프로퍼티

SQL grouping open character.
public static String LEFT
리턴 String

NULL 공개적으로 정적으로 프로퍼티

SQL NULL keyword.
public static String NULL
리턴 String

OR 공개적으로 정적으로 프로퍼티

SQL OR keyword.
public static String OR
리턴 String

PAGE_INDEX 공개적으로 정적으로 프로퍼티

PageIndex Temp Table
public static String PAGE_INDEX
리턴 String

QUOTE 공개적으로 정적으로 프로퍼티

Delimiter for quoted search terms.
public static String QUOTE
리턴 String

RIGHT 공개적으로 정적으로 프로퍼티

SQL grouping close character.
public static String RIGHT
리턴 String

STAR 공개적으로 정적으로 프로퍼티

Used as wildcard character within search text.
public static String STAR
리턴 String

TOKEN 공개적으로 정적으로 프로퍼티

Used to represent quoted search terms.
public static String TOKEN
리턴 String

WILD 공개적으로 정적으로 프로퍼티

SQL wildcard character.
public static String WILD
리턴 String