Definition at line 81 of file ColumnChecker.cs.
override string Deveel.Data.Sql.Statements.ColumnChecker.DefaultChecker.ResolveColumnName |
( |
string |
columnName | ) |
|
|
inlinevirtual |
Implements Deveel.Data.Sql.Statements.ColumnChecker.
Definition at line 90 of file ColumnChecker.cs.
91 var comparison =
ignoreCase ? StringComparison.OrdinalIgnoreCase : StringComparison.Ordinal;
92 string foundColumn = null;
95 if (foundColumn != null)
96 throw new InvalidOperationException(
String.Format(
"Column name '{0}' caused an ambiguous match in table.", columnName));
98 if (
String.Equals(columnInfo.ColumnName, columnName, comparison))
99 foundColumn = columnInfo.ColumnName;
A long string in the system.
readonly TableInfo tableInfo
readonly bool Deveel.Data.Sql.Statements.ColumnChecker.DefaultChecker.ignoreCase |
|
private |
readonly TableInfo Deveel.Data.Sql.Statements.ColumnChecker.DefaultChecker.tableInfo |
|
private |
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Sql.Statements/ColumnChecker.cs