Class SqlHelper
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Class to provide common SQL methods.
public static class SqlHelper
- Inheritance
-
objectSqlHelper
Fields
COLUMNS_ALL
Represents all columns within given query
public const string COLUMNS_ALL = "*"
Field Value
- string
DB_CONNECTION_TIMEOUT
Default SQL connection timeout.
public const int DB_CONNECTION_TIMEOUT = 60
Field Value
- int
DEFAULT_DB_SCHEMA
Default db schema.
public static string DEFAULT_DB_SCHEMA
Field Value
- string
DefaultSQLInlineLimit
Default inline limit for SQL lists. When the number of values is below this number, the lists on SQL, e.g. IN (x, y, z), are evaluated as inline lists.
public static IntAppSetting DefaultSQLInlineLimit
Field Value
GENERAL_DELETE
General delete SQL statement
public const string GENERAL_DELETE = "DELETE FROM ##SOURCE## WHERE ##WHERE##"
Field Value
- string
GENERAL_INSERT
General insert SQL statement
public const string GENERAL_INSERT = "INSERT INTO ##SOURCE## (##COLUMNS##) \r\nVALUES (##VALUES##);\r\n\r\nSELECT SCOPE_IDENTITY() AS [ID]"
Field Value
- string
GENERAL_SELECT
General select SQL statement
public const string GENERAL_SELECT = "SELECT ##DISTINCT## ##TOPN## ##COLUMNS## \r\nFROM ##SOURCE## \r\nWHERE ##WHERE## \r\nGROUP BY ##GROUPBY## \r\nHAVING ##HAVING## ORDER BY ##ORDERBY##"
Field Value
- string
GENERAL_UPDATE
General update SQL statement
public const string GENERAL_UPDATE = "UPDATE ##SOURCE## SET ##VALUES## OUTPUT ##OUTPUT##\r\nWHERE ##WHERE##"
Field Value
- string
GENERAL_UPSERT
General upsert (update/insert) SQL statement
public const string GENERAL_UPSERT = "IF NOT EXISTS (SELECT * FROM ##SOURCE## WHERE ##WHERE##)\r\nBEGIN\r\n\tINSERT INTO ##SOURCE## (##COLUMNS##) VALUES (##VALUES##)\r\n\tSELECT SCOPE_IDENTITY() AS [ID]\r\nEND ELSE \r\n\tUPDATE ##SOURCE## SET ##VALUES1## WHERE ##WHERE##"
Field Value
- string
MAX_PARAM_LENGTH
Maximum parameter length to log.
public const int MAX_PARAM_LENGTH = 200
Field Value
- int
MISSING_VALUE
Unknown value.
public static object MISSING_VALUE
Field Value
- object
NO_COLUMNS
Constant for no columns.
public const string NO_COLUMNS = "#NONE#"
Field Value
- string
NO_DATA_WHERE
Where condition representing no data.
public const string NO_DATA_WHERE = "0 = 1"
Field Value
- string
ORDERBY_ASC
Suffix for the ascending order
public const string ORDERBY_ASC = " ASC"
Field Value
- string
ORDERBY_DESC
Suffix for the descending order
public const string ORDERBY_DESC = " DESC"
Field Value
- string
SELECT_NULL
Empty select statement
public const string SELECT_NULL = "SELECT NULL"
Field Value
- string
Properties
IntegerTableType
Returns type for User-defined integer SQL type
public static Type IntegerTableType { get; }
Property Value
- Type
OrderedIntegerTableType
Returns type for User-defined integer SQL type
public static Type OrderedIntegerTableType { get; }
Property Value
- Type
Methods
AddColumnAlias(string, string, bool)
Adds the column alias to the given expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string AddColumnAlias(string expression, string alias, bool ensureBrackets = true)
Parameters
expression
stringExpression
alias
stringAlias
ensureBrackets
boolIf true, the expression is encapsulated in brackets in case it is a complex expression
Returns
- string
AddColumns(string, string, bool)
Adds the columns.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string AddColumns(string columns, string addColumns, bool treatEmptyAsAll = false)
Parameters
columns
stringOriginal columns
addColumns
stringColumns to add
treatEmptyAsAll
boolIf true, empty source columns are treated as all columns
Returns
- string
AddOrderBy(string, string, OrderDirection)
Adds the order by to an existing one.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string AddOrderBy(string orderBy, string add, OrderDirection dir = OrderDirection.Default)
Parameters
orderBy
stringOriginal order by
add
stringOrder by to add
dir
OrderDirectionOrder direction
Returns
- string
AddWhereCondition(string, string)
Adds where condition to the expression using AND operator.
public static string AddWhereCondition(string where, string condition)
Parameters
where
stringWhere condition
condition
stringCondition to add
Returns
- string
AddWhereCondition(string, string, string)
Adds where condition to the expression.
public static string AddWhereCondition(string where, string condition, string op)
Parameters
where
stringWhere condition
condition
stringCondition to add
op
stringOperator, no spaces required. e.g. "OR"
Returns
- string
AppendQuery(string, string, string)
Combines the given queries with the operator
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string AppendQuery(string query, string append, string op)
Parameters
query
stringOriginal query
append
stringQuery to append
op
stringOperator between queries
Returns
- string
ApplyOver(string, string)
Applies the over clause to the given expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string ApplyOver(string expression, string over)
Parameters
expression
stringExpression
over
stringOver clause. When null, over clause is not generated at all, otherwise it is generated even when value is an empty string, in such case " OVER ()" is generated
Returns
- string
BuildBigIntTable(IEnumerable<long>)
Gets a table-valued parameter for database calls. Is intended for usage with [Type_CMS_BigIntTable] database type.
public static IEnumerable<SqlDataRecord> BuildBigIntTable(IEnumerable<long> longs)
Parameters
longs
IEnumerable<long>
Returns
- IEnumerable<SqlDataRecord>
Remarks
Returns empty enumeration if there are no values provided. The database doesn't ever expect to get empty table, it needs not to add the parameter at all. So when calling this method to add an parameter to a query, check this for an empty enumeration at first and do not add the parameter at all in that case.
BuildGuidTable(IEnumerable<GuidItem>)
Gets a table-valued parameter for database calls. Is intended for usage with [Type_CMS_GuidTable] database type.
public static IEnumerable<SqlDataRecord> BuildGuidTable(IEnumerable<GuidItem> guids)
Parameters
guids
IEnumerable<GuidItem>
Returns
- IEnumerable<SqlDataRecord>
Remarks
Returns empty enumeration if there are no values provided. The database doesn't ever expect to get empty table, it needs not to add the parameter at all. So when calling this method to add an parameter to a query, check this for an empty enumeration at first and do not add the parameter at all in that case.
BuildIntTable(IEnumerable<int>)
Gets a table-valued parameter for database calls. Is intended for usage with [Type_CMS_IntegerTable] database type.
public static IEnumerable<SqlDataRecord> BuildIntTable(IEnumerable<int> integers)
Parameters
integers
IEnumerable<int>
Returns
- IEnumerable<SqlDataRecord>
Remarks
Returns empty enumeration if there are no values provided. The database doesn't ever expect to get empty table, it needs not to add the parameter at all. So when calling this method to add an parameter to a query, check this for an empty enumeration at first and do not add the parameter at all in that case.
BuildOrderedIntTable(IEnumerable<int>)
Gets a table-valued parameter for database calls. Is intended for usage with [Type_CMS_OrderedIntegerTable] database type.
public static IEnumerable<SqlDataRecord> BuildOrderedIntTable(IEnumerable<int> integers)
Parameters
integers
IEnumerable<int>
Returns
- IEnumerable<SqlDataRecord>
Remarks
Returns empty enumeration if there are no values provided. The database doesn't ever expect to get empty table, it needs not to add the parameter at all. So when calling this method to add an parameter to a query, check this for an empty enumeration at first and do not add the parameter at all in that case.
BuildStringTable(IEnumerable<StringItem>)
Gets a table-valued parameter for database calls. Is intended for usage with [Type_CMS_StringTable] database type.
public static IEnumerable<SqlDataRecord> BuildStringTable(IEnumerable<StringItem> strings)
Parameters
strings
IEnumerable<StringItem>
Returns
- IEnumerable<SqlDataRecord>
Remarks
Returns empty enumeration if there are no values provided. The database doesn't ever expect to get empty table, it needs not to add the parameter at all. So when calling this method to add an parameter to a query, check this for an empty enumeration at first and do not add the parameter at all in that case.
CombineQueries(IEnumerable<string>, IEnumerable<string>)
Combines the given queries with the operators
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string CombineQueries(IEnumerable<string> queries, IEnumerable<string> operators)
Parameters
queries
IEnumerable<string>Queries to merge
operators
IEnumerable<string>Operators between queries, for lower number of operators than necessary uses the last operator for the remaining queries. Use one operator in case you want all operators to be the same.
Returns
- string
EnsureFullName(string, string)
Ensures full name of the given column
public static string EnsureFullName(string tableName, string columnName)
Parameters
tableName
stringTable name
columnName
stringColumn name
Returns
- string
EnsureMissingColumns(ICollection<QueryColumnList>)
Ensures the missing columns in the given collection of QueryColumnList instances and removes all occurrences of all columns selector in them
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void EnsureMissingColumns(ICollection<QueryColumnList> columnLists)
Parameters
columnLists
ICollection<QueryColumnList>Input lists of columns
Examples
Collection A has { A, B as C, D } and collection B has { X, D, C } after calling this method result is A has { A, B as C, D, NULL AS X } and B has { X, D, C, NULL AS A }.
Another example, collection A has { *, A } and B has { X } result is A has { A , NULL as X } and B has { X, NULL as A }.
Remarks
This method is useful when doing e.g. UNION on two queries and the same columns are needed in both queries.
EscapeLikeQueryPatterns(string, bool, bool, bool)
Escapes characters for query which use LIKE pattern.
public static string EscapeLikeQueryPatterns(string input, bool escapeUnderScore = true, bool escapePercentage = true, bool escapeSquareBrackets = true)
Parameters
input
stringInput text
escapeUnderScore
boolIndicates whether underscore character should be escaped
escapePercentage
boolIndicates whether percentage character should be escaped
escapeSquareBrackets
boolIndicates whether square brackets characters should be escaped
Returns
- string
EscapeLikeText(string)
Escapes characters for query which use LIKE pattern (%, _, [, ] and ^).
public static string EscapeLikeText(string text)
Parameters
text
stringOriginal input
Returns
- string
The escaped string that can be used as pattern in a LIKE expression
EscapeQuotes(string)
Escapes single quotes in string value used for SQL query (value's => value''s).
public static string EscapeQuotes(string text)
Parameters
text
stringOriginal input text
Returns
- string
The escaped string that can be used as safe string in SQL query
ExceptQueries(params string[])
Returns the query created as an EXCEPT of the given queries.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string ExceptQueries(params string[] queries)
Parameters
queries
string[]Queries to except
Returns
- string
GetAggregation(string, AggregationType)
Gets the aggregation expression from the given expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetAggregation(string expression, AggregationType type)
Parameters
expression
stringExpression
type
AggregationTypeAggregation type
Returns
- string
GetBetween(string, int, int)
Gets the condition matching values of the column between from and to
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetBetween(string column, int from, int to)
Parameters
column
stringColumn name
from
intFrom value
to
intTo value
Returns
- string
GetCase(IEnumerable<KeyValuePair<string, string>>, string, bool)
Returns statement for the CASE expressions.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCase(IEnumerable<KeyValuePair<string, string>> cases, string elseCase = null, bool escapeString = true)
Parameters
cases
IEnumerable<KeyValuePair<string, string>>IEnumerable with KeyValuePair where key is a boolean expression (where condition) and value is result expression
elseCase
stringExpression for the else case
escapeString
boolDetermines whether escape cases' values or not
Returns
- string
GetCaseColumn(IEnumerable<KeyValuePair<string, string>>, string)
Returns statement for column with case expressions. This statement is used for evaluating a set of boolean expressions to determine the result. First case has highest priority.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCaseColumn(IEnumerable<KeyValuePair<string, string>> cases, string asColumnName = "CaseColumn")
Parameters
cases
IEnumerable<KeyValuePair<string, string>>IEnumerable with KeyValuePair where key is a boolean expression (where condition) and value is result expression
asColumnName
stringSpecifies column name
Returns
- string
GetCaseOrderBy(IEnumerable<string>)
Returns order by statement based on case boolean expressions. First case has highest priority.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCaseOrderBy(IEnumerable<string> cases)
Parameters
cases
IEnumerable<string>IEnumerable with boolean expressions (where conditions)
Returns
- string
GetCaseOrderBy(params string[])
Returns order by statement based on case boolean expressions. First case has highest priority.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCaseOrderBy(params string[] cases)
Parameters
cases
string[]IEnumerable with boolean expressions (where conditions)
Returns
- string
GetCast(string, string)
Get the CAST expression.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCast(string value, string type)
Parameters
value
stringValue to be casted
type
stringType the value should be casted to
Returns
- string
Examples
<pre><code class="lang-csharp">GetCast("ActivityValue", "FLOAT")</code></pre>
returns "CAST(ActivityValue AS INT)"
GetColumnName(string)
Gets the column name from the given SQL column expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetColumnName(string column)
Parameters
column
stringColumn to parse
Returns
- string
GetConvert(string, string)
Gets the convert expression.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetConvert(string value, string type)
Parameters
value
stringValue to be converted
type
stringType the value should be converted to
Returns
- string
Examples
<pre><code class="lang-csharp">GetConvert("ActivityValue", "INT")</code></pre>
returns CONVERT(INT, ActivityValue)
GetCurrentDefaultSchema(IDataConnection)
Returns current default schema.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetCurrentDefaultSchema(IDataConnection conn)
Parameters
conn
IDataConnectionConnection
Returns
- string
GetIsNumeric(string)
Gets the ISNUMERIC expression.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetIsNumeric(string value)
Parameters
value
stringValue to be checked
Returns
- string
Examples
<pre><code class="lang-csharp">GetIsNumeric("ActivityValue")</code></pre>
returns ISNUMERIC(ActivityValue)
GetJoin(string, string, string, JoinTypeEnum)
Gets the join expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetJoin(string left, string right, string condition, JoinTypeEnum joinType = JoinTypeEnum.Inner)
Parameters
left
stringLeft side source
right
stringRight side source
condition
stringCondition
joinType
JoinTypeEnumJoin type
Returns
- string
GetJoinType(JoinTypeEnum)
Gets the join expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetJoinType(JoinTypeEnum joinType)
Parameters
joinType
JoinTypeEnumJoin type
Returns
- string
GetNestedQuery(string, string)
Gets a nested query using nested SELECT for further evaluation
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetNestedQuery(string queryText, string tableName = "SubData")
Parameters
queryText
stringtableName
string
Returns
- string
GetOrderByColumnName(string)
Gets the column name from the given SQL column expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetOrderByColumnName(string column)
Parameters
column
stringColumn to parse
Returns
- string
GetOrderByColumnName(string, out string)
Gets the column name from the given SQL column expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetOrderByColumnName(string column, out string suffix)
Parameters
column
stringColumn to parse
suffix
stringOutputs the order by suffix for the column
Returns
- string
GetParameterName(string)
Gets the parameter name
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetParameterName(string name)
Parameters
name
stringParameter name
Returns
- string
GetRound(string, int)
Gets the round expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetRound(string value, int places)
Parameters
value
stringValue expression
places
intPlaces to round to
Returns
- string
GetRowNumber(string, string)
Gets the row number expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetRowNumber(string orderBy, string partitionBy = null)
Parameters
orderBy
stringOrder by expression
partitionBy
stringPartition by expression
Returns
- string
GetSafeQueryString(string, bool)
Returns safe sql query string - escapes apostrophes and optionally escapes wildcard characters _, %, [].
public static string GetSafeQueryString(string input, bool escapeWildcards = true)
Parameters
input
stringString to escape
escapeWildcards
boolDetermines whether the wildcards characters should be escaped
Returns
- string
GetSelectQuery(string, string)
Gets the general select query
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetSelectQuery(string source, string where = null)
Parameters
source
stringQuery source
where
stringWhere condition
Returns
- string
GetSqlValue(object)
Gets the value representation for a SQL query text
public static string GetSqlValue(object value)
Parameters
value
objectValue
Returns
- string
GetValueExpression(string)
Gets the value expression from the given expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string GetValueExpression(string expression)
Parameters
expression
stringExpression to wrap
Returns
- string
GetWhereCondition(string, IEnumerable<int>, bool)
Creates the where condition for the array of values.
public static string GetWhereCondition(string columnName, IEnumerable<int> values, bool negation = false)
Parameters
columnName
stringColumn name
values
IEnumerable<int>Values
negation
boolIndicates if NOT IN should be used
Returns
- string
GetWhereCondition(string, IEnumerable<string>, bool)
Creates the where condition for the array of values.
public static string GetWhereCondition(string columnName, IEnumerable<string> values, bool negation = false)
Parameters
columnName
stringColumn name
values
IEnumerable<string>Values
negation
boolIndicates if NOT IN should be used
Returns
- string
GetWhereCondition<T>(string, IEnumerable<string>, bool, bool)
Creates the where condition for the array of values.
public static string GetWhereCondition<T>(string columnName, IEnumerable<string> values, bool useUnicode, bool negation = false)
Parameters
columnName
stringColumn name
values
IEnumerable<string>Values
useUnicode
boolIndicates if the preposition 'N' should be used for string values
negation
boolIndicates if NOT IN should be used
Returns
- string
Type Parameters
T
Value type
GetWhereInCondition<T>(string, ICollection<T>, bool, bool)
Returns where condition in SQL syntax for collection of items.
public static string GetWhereInCondition<T>(string columnName, ICollection<T> values, bool negation, bool allowNullValue)
Parameters
columnName
stringColumn name. The column name is not encapsulated or escaped. Proper format must be ensured outside of this method.
values
ICollection<T>Collection of values. Null or empty values generates simple where condition with dependence on negation parameter (0 = 1 or 1 = 1)
negation
boolIndicates whether "NOT IN"/"<>" should be used
allowNullValue
boolIndicates whether null values should be considered as database NULL value type
Returns
- string
Type Parameters
T
Define value type. Only int, StringItem or GuidItem are supported. Other types are considered as strings and could cause an invalid SQL syntax
Examples
string whereCondition = GetWhereInCondition("ColumName", new List<int>() { 1, 10 , 50}, true);
Output: "ColumnName NOT IN (1, 10, 50)"
Remarks
The following rules are applied:
- Duplicate values in collection are ignored
- Duplicate values are compared with case sensitivity
- Null or empty collection generates simplified where condition with dependence on negation parameter ("0 = 1"/"1 = 1")
- Collection with single item results in condition with equality comparer (depend on negation parameter e.g.: "="/"<>" instead of "IN"/"NOT IN")
- Single null value (depends on allowNullValue parameter) results in NULL equality comparer ("IS" or "IS NOT")
- Unicode prefix is automatically added for string values (N'Text')
- This method cannot be used for System.Data.DataTable select condition.
HandleEmptyColumns(ref string)
Handles the empty columns constant by replacing it with empty string
public static void HandleEmptyColumns(ref string columns)
Parameters
columns
stringColumns to process
IntersectQueries(params string[])
Returns the query created as an INTERSECT of the given queries.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string IntersectQueries(params string[] queries)
Parameters
queries
string[]Queries to intersect
Returns
- string
IsSingleColumn(string)
Returns true, if the query output is a single column
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static bool IsSingleColumn(string columns)
Parameters
columns
string
Returns
- bool
JoinColumnList(IEnumerable<string>)
Joins the given column list. Columns are separated by comma.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string JoinColumnList(IEnumerable<string> columns)
Parameters
columns
IEnumerable<string>Columns to add
Returns
- string
MatchLikePattern(string, string)
Indicates whether string matches given SQL 'like' pattern.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static bool MatchLikePattern(string value, string pattern)
Parameters
value
stringInput string value
pattern
stringLike search patter
Returns
- bool
MergeColumns(IEnumerable<string>, IEnumerable<string>, Func<string, string>, bool, Func<string, string>)
Merges the sets of columns and makes sure that each column in the result is present only once.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string MergeColumns(IEnumerable<string> columns, IEnumerable<string> addColumns = null, Func<string, string> uniqueKey = null, bool extraColumns = true, Func<string, string> transformation = null)
Parameters
columns
IEnumerable<string>Original column list
addColumns
IEnumerable<string>List of columns to add
uniqueKey
Func<string, string>Function which provides unique key for the merging process (if two column keys match, the merging process allows only first column)
extraColumns
boolIndicates if columns which are not part of '*' expression are merged to the existing list of columns
transformation
Func<string, string>Column transformation
Returns
- string
Returns the list separated by dashes for use in SQL query
MergeColumns(string, string, Func<string, string>, bool, Func<string, string>)
Merges the sets of columns and makes sure that each column in the result is present only once.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string MergeColumns(string columns, string addColumns, Func<string, string> uniqueKey = null, bool extraColumns = true, Func<string, string> transformation = null)
Parameters
columns
stringOriginal column list
addColumns
stringList of columns to add
uniqueKey
Func<string, string>Function which provides unique key for the merging process (if two column keys match, the merging process allows only first column)
extraColumns
boolIndicates if columns which are not part of '*' expression are merged to the existing list of columns
transformation
Func<string, string>Column transformation
Returns
- string
Returns the list separated by dashes for use in SQL query
OrderByContains(string, string, bool)
Returns true if the order by expression contains column sorted the specified way.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static bool OrderByContains(string orderBy, string column, bool ascending)
Parameters
orderBy
stringOrder by expression to check
column
stringColumn to check
ascending
boolDirection
Returns
- bool
ParseColumn(string, out string, out string)
Gets the column name from the given SQL column expression
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void ParseColumn(string column, out string expression, out string alias)
Parameters
column
stringColumn to parse
expression
stringColumn expression
alias
stringReturns column alias or null in case column does not have any alias
ParseColumnList(string)
Parses the given list of columns to a list (can handle also advanced columns containing functions like ISNULL(A, B) etc.).
If columns
contains NO_COLUMNS, then NO_COLUMNS won't be present in result list.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static List<string> ParseColumnList(string columns)
Parameters
columns
stringList of columns separated with commas
Returns
- List<string>
PreparePagedQuery(string, QueryMacros, int, int, bool, bool)
Prepares the query for paging, adds additional system columns and updates the columns list.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string PreparePagedQuery(string queryText, QueryMacros macros, int offset, int maxRecords, bool getTotal = true, bool subQuery = false)
Parameters
queryText
stringQuery text
macros
QueryMacrosQuery expressions
offset
intIndex of first record to get
maxRecords
intMaximum number of records to get
getTotal
boolIf true, the query should get the total number of records
subQuery
boolIf true, the query is used as a sub-query
Returns
- string
PreprocessQuery(QueryParameters)
Preprocesses the give query.
[Obsolete("Method is deprecated and will be removed in the next version.")]
[ObsoleteSince(28, 2)]
public static void PreprocessQuery(QueryParameters query)
Parameters
query
QueryParametersQuery to preprocess
ProcessPagedResults(DataSet, ref int)
Processes the page results - Removes the system columns and gets the total records number.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static void ProcessPagedResults(DataSet ds, ref int totalRecords)
Parameters
ds
DataSetDataSet with the results
totalRecords
intReturns the total records number
RemoveOwner(string)
Removes the owner from the given object name.
public static string RemoveOwner(string objectName)
Parameters
objectName
stringObject name
Returns
- string
ReverseOrderBy(string)
Reverses the order by string by toggling between ASC and DESC.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string ReverseOrderBy(string orderBy)
Parameters
orderBy
stringOriginal ORDER by
Returns
- string
TryEnsureDefaultSchema(IDataConnection, out string, Action<string, MessageTypeEnum>)
Tries to ensure the database schema for the current user. If the user does not have the schema set, sets the schema to the default one.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static bool TryEnsureDefaultSchema(IDataConnection conn, out string dbSchema, Action<string, MessageTypeEnum> log = null)
Parameters
conn
IDataConnectionData connection
dbSchema
stringEnsured schema
log
Action<string, MessageTypeEnum>Log message
Returns
- bool
Returns true if the schema was successfully ensured.
UnionQueries(params string[])
Returns the query created as an UNION ALL of given queries.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string UnionQueries(params string[] queries)
Parameters
queries
string[]Queries to union
Returns
- string
UnionQueries(string[], bool)
Returns the query created as an UNION of the given queries.
[Obsolete("Method was not intended for public use and will be removed.")]
[ObsoleteSince(30, 1)]
public static string UnionQueries(string[] queries, bool unionAll)
Parameters
queries
string[]Queries to union
unionAll
boolUnion all records (no distinct)
Returns
- string