Home
last modified time | relevance | path

Searched refs:tableExpression (Results 1 – 25 of 28) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.Linq/src/DbLinq/Data/Linq/Sugar/Implementation/
H A DExpressionDispatcher.Analyzer.cs53 Expression tableExpression = parameter; in Analyze()
81 tableExpression = currentExpression; in Analyze()
84 return tableExpression; in Analyze()
627 … if (!(tableExpression is TableExpression) && !(tableExpression is EntitySetExpression)) in AnalyzeProjectionQuery()
628 tableExpression = Analyze(tableExpression, projectionQueryBuilderContext); in AnalyzeProjectionQuery()
815 if (tableExpression == null) in AnalyzeMember()
817 return tableExpression; in AnalyzeMember()
1151 if (tableExpression == null) in IsMetaTableDefinition()
1243 if (tableExpression != null) in AnalyzeOuterJoin()
1417 … if (!(tableExpression is TableExpression) && !(tableExpression is EntitySetExpression)) in AnalyzeAny()
[all …]
H A DSqlBuilder.cs181 var tableExpression = (TableExpression)expression; in BuildExpression()
297 foreach (var tableExpression in tables) in BuildFrom()
299 if (!MustDeclareAsJoin(tables, tableExpression)) in BuildFrom()
301 if (tableExpression.Alias != null) in BuildFrom()
308 … tableAlias = sqlProvider.GetTableAsAlias(tableExpression.Name, tableExpression.Alias); in BuildFrom()
340 foreach (var tableExpression in tables) in BuildJoin()
343 if (MustDeclareAsJoin(tables, tableExpression)) in BuildJoin()
347 … var tableAlias = sqlProvider.GetTableAsAlias(tableExpression.Name, tableExpression.Alias); in BuildJoin()
349 switch (tableExpression.JoinType) in BuildJoin()
387 foreach (var tableExpression in tables) in BuildWhere()
[all …]
H A DExpressionDispatcher.Registrar.cs77 where t.IsEqualTo(tableExpression) in RegisterTable()
82 foundTableExpression = PromoteTable(tableExpression, builderContext); in RegisterTable()
86 builderContext.CurrentSelect.Tables.Add(tableExpression); in RegisterTable()
87 return tableExpression; in RegisterTable()
115 if (oldSelect.Tables[tableIndex].IsEqualTo(tableExpression)) in PromoteTable()
185 … public ColumnExpression RegisterColumn(TableExpression tableExpression, MemberInfo memberInfo, in RegisterColumn() argument
192 … return RegisterColumn(tableExpression, memberInfo, dataMember.MappedName, builderContext); in RegisterColumn()
270 otherTableExpression.Join(joinType, tableExpression, joinExpression); in RegisterAssociation()
345 yield return RegisterColumn(tableExpression, metaMember.Member, builderContext); in RegisterAllColumns()
385 protected virtual Expression GetOutputTableReader(TableExpression tableExpression, in GetOutputTableReader() argument
[all …]
H A DQueryBuilder.cs128 foreach (var tableExpression in tables) in CheckTablesAlias()
131 if (string.IsNullOrEmpty(tableExpression.Alias) || in CheckTablesAlias()
132 FindExpressionsByName(tableExpression.Alias, builderContext).Count > 1) in CheckTablesAlias()
135 var aliasBase = tableExpression.Alias; in CheckTablesAlias()
139tableExpression.Alias = MakeTableName(aliasBase, ++anonymousIndex, builderContext); in CheckTablesAlias()
140 … } while (FindExpressionsByName(tableExpression.Alias, builderContext).Count != 1); in CheckTablesAlias()
201 …ression BuildExpressionQuery(ExpressionChain expressions, Expression tableExpression, BuilderConte… in BuildExpressionQuery() argument
203tableExpression = ExpressionDispatcher.Analyze(expressions, tableExpression, builderContext); in BuildExpressionQuery()
204 ExpressionDispatcher.BuildSelect(tableExpression, builderContext); in BuildExpressionQuery()
205 return tableExpression; in BuildExpressionQuery()
[all …]
H A DDataMapper.cs60 …public virtual string GetColumnName(TableExpression tableExpression, MemberInfo memberInfo, DataCo… in GetColumnName() argument
62 return GetColumnName(tableExpression.Type, memberInfo, dataContext); in GetColumnName()
74 …public virtual IList<MemberInfo> GetPrimaryKeys(TableExpression tableExpression, DataContext dataC… in GetPrimaryKeys() argument
76 var tableDescription = dataContext.Mapping.GetTable(tableExpression.Type); in GetPrimaryKeys()
H A DExpressionDispatcher.cs242 …protected virtual Expression GetSelectTableExpression(TableExpression tableExpression, BuilderCont… in GetSelectTableExpression() argument
245 foreach (var columnExpression in RegisterAllColumns(tableExpression, builderContext)) in GetSelectTableExpression()
250 var newExpression = Expression.New(tableExpression.Type); in GetSelectTableExpression()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.Linq/src/DbLinq/Data/Linq/Sugar/Expressions/
H A DEntitySetExpression.cs53 TableExpression tableExpression; field in DbLinq.Data.Linq.Sugar.Expressions.EntitySetExpression
57 if (tableExpression != null)
58 return tableExpression;
60tableExpression = dispatcher.RegisterAssociation(sourceTable, memberInfo, entityType, builderConte…
61 return tableExpression;
64 tableExpression = value;
H A DTableExpression.cs120 protected TableExpression(ExpressionType expressionType, TableExpression tableExpression) in TableExpression() argument
121 : base(expressionType, tableExpression.Type) in TableExpression()
123 Name = tableExpression.Name; in TableExpression()
H A DGroupByExpression.cs67 private GroupByExpression(TableExpression tableExpression) in GroupByExpression() argument
68 : base(ExpressionType, tableExpression) in GroupByExpression()
70 Table = tableExpression; in GroupByExpression()
/dports/www/owncloud/owncloud/lib/private/DB/
H A DOracleConnection.php71 public function delete($tableExpression, array $identifier, array $types = []) { argument
72 if ($tableExpression[0] !== $this->getDatabasePlatform()->getIdentifierQuoteCharacter()) {
73 $tableExpression = $this->quoteIdentifier($tableExpression);
76 return parent::delete($tableExpression, $identifier);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/dbal/lib/Doctrine/DBAL/
H A DConnection.php569 * @param string $tableExpression The expression of the table on which to delete.
577 public function delete($tableExpression, array $identifier, array $types = array()) argument
594 'DELETE FROM ' . $tableExpression . ' WHERE ' . implode(' AND ', $criteria),
645 * @param string $tableExpression The expression of the table to update quoted or unquoted.
652 public function update($tableExpression, array $data, array $identifier, array $types = array()) argument
675 $sql = 'UPDATE ' . $tableExpression . ' SET ' . implode(', ', $set)
686 …* @param string $tableExpression The expression of the table to insert data into, quoted or unquot…
692 public function insert($tableExpression, array $data, array $types = array()) argument
697 return $this->executeUpdate('INSERT INTO ' . $tableExpression . ' ()' . ' VALUES ()');
711 'INSERT INTO ' . $tableExpression . ' (' . implode(', ', $columnList) . ')' .
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/dbal/lib/Doctrine/DBAL/
H A DConnection.php569 * @param string $tableExpression The expression of the table on which to delete.
577 public function delete($tableExpression, array $identifier, array $types = array()) argument
592 'DELETE FROM ' . $tableExpression . ' WHERE ' . implode(' AND ', $criteria),
643 * @param string $tableExpression The expression of the table to update quoted or unquoted.
650 public function update($tableExpression, array $data, array $identifier, array $types = array()) argument
665 $sql = 'UPDATE ' . $tableExpression . ' SET ' . implode(', ', $set)
677 …* @param string $tableExpression The expression of the table to insert data into, quoted or unquot…
683 public function insert($tableExpression, array $data, array $types = array()) argument
688 return $this->executeUpdate('INSERT INTO ' . $tableExpression . ' ()' . ' VALUES ()');
692 'INSERT INTO ' . $tableExpression . ' (' . implode(', ', array_keys($data)) . ')' .
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.Linq/src/DbLinq/Data/Linq/Sugar/
H A DIDataMapper.cs59 …string GetColumnName(TableExpression tableExpression, MemberInfo memberInfo, DataContext dataConte… in GetColumnName() argument
76 IList<MemberInfo> GetPrimaryKeys(TableExpression tableExpression, DataContext dataContext); in GetPrimaryKeys() argument
/dports/finance/prestashop/prestashop/vendor/doctrine/dbal/lib/Doctrine/DBAL/
H A DConnection.php638 * @param string $tableExpression The expression of the table on which to delete.
647 public function delete($tableExpression, array $identifier, array $types = []) argument
656 'DELETE FROM ' . $tableExpression . ' WHERE ' . implode(' AND ', $conditions),
707 … * @param string $tableExpression The expression of the table to update quoted or unquoted.
716 public function update($tableExpression, array $data, array $identifier, array $types = []) argument
736 $sql = 'UPDATE ' . $tableExpression . ' SET ' . implode(', ', $set)
747 …* @param string $tableExpression The expression of the table to insert data into, quoted o…
755 public function insert($tableExpression, array $data, array $types = []) argument
758 return $this->executeUpdate('INSERT INTO ' . $tableExpression . ' () VALUES ()');
772 'INSERT INTO ' . $tableExpression . ' (' . implode(', ', $columns) . ')' .
/dports/www/typo3-9/typo3_src-9.5.31/vendor/doctrine/dbal/lib/Doctrine/DBAL/
H A DConnection.php644 * @param string $tableExpression The expression of the table on which to delete.
653 public function delete($tableExpression, array $identifier, array $types = []) argument
664 'DELETE FROM ' . $tableExpression . ' WHERE ' . implode(' AND ', $conditions),
715 … * @param string $tableExpression The expression of the table to update quoted or unquoted.
724 public function update($tableExpression, array $data, array $identifier, array $types = []) argument
740 $sql = 'UPDATE ' . $tableExpression . ' SET ' . implode(', ', $set)
751 …* @param string $tableExpression The expression of the table to insert data into, quoted o…
759 public function insert($tableExpression, array $data, array $types = []) argument
762 return $this->executeUpdate('INSERT INTO ' . $tableExpression . ' () VALUES ()');
776 'INSERT INTO ' . $tableExpression . ' (' . implode(', ', $columns) . ')' .
/dports/editors/libreoffice/libreoffice-7.2.6.2/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/
H A DNameDefinition.java192 Node tableExpression= in readNode() local
197 definition = tableExpression.getNodeValue(); in readNode()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/
H A DNameDefinition.java192 Node tableExpression= in readNode() local
197 definition = tableExpression.getNodeValue(); in readNode()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/dmlpackage/
H A Ddml-gram-win.cpp249 dmlpackage::TableExpression* tableExpression; member
2242 (yyval.querySpec)->fTableExpressionPtr = (yyvsp[(4) - (4)].tableExpression);
2265 (yyval.tableExpression) = new TableExpression();
2266 (yyval.tableExpression)->fFromClausePtr = (yyvsp[(1) - (4)].fromClause);
2267 (yyval.tableExpression)->fWhereClausePtr = (yyvsp[(2) - (4)].whereClause);
2268 (yyval.tableExpression)->fGroupByPtr = (yyvsp[(3) - (4)].groupByClause);
2269 (yyval.tableExpression)->fHavingPtr = (yyvsp[(4) - (4)].havingClause);
2669 (yyval.querySpec)->fTableExpressionPtr = (yyvsp[(5) - (6)].tableExpression);
H A Ddmlpkg.cpp446 QuerySpec::QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression) in QuerySpec() argument
447 : fSelectFilterPtr(selectFilter), fTableExpressionPtr(tableExpression) in QuerySpec()
452 QuerySpec::QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression, in QuerySpec() argument
454 : fSelectFilterPtr(selectFilter), fTableExpressionPtr(tableExpression) in QuerySpec()
H A Ddml-gram-win.h153 dmlpackage::TableExpression* tableExpression; member
H A Ddmlpkg.h1020 QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression);
1028 QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression,
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/dmlpackage/
H A Ddml-gram-win.cpp249 dmlpackage::TableExpression* tableExpression; member
2242 (yyval.querySpec)->fTableExpressionPtr = (yyvsp[(4) - (4)].tableExpression);
2265 (yyval.tableExpression) = new TableExpression();
2266 (yyval.tableExpression)->fFromClausePtr = (yyvsp[(1) - (4)].fromClause);
2267 (yyval.tableExpression)->fWhereClausePtr = (yyvsp[(2) - (4)].whereClause);
2268 (yyval.tableExpression)->fGroupByPtr = (yyvsp[(3) - (4)].groupByClause);
2269 (yyval.tableExpression)->fHavingPtr = (yyvsp[(4) - (4)].havingClause);
2669 (yyval.querySpec)->fTableExpressionPtr = (yyvsp[(5) - (6)].tableExpression);
H A Ddmlpkg.cpp446 QuerySpec::QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression) in QuerySpec() argument
447 : fSelectFilterPtr(selectFilter), fTableExpressionPtr(tableExpression) in QuerySpec()
452 QuerySpec::QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression, in QuerySpec() argument
454 : fSelectFilterPtr(selectFilter), fTableExpressionPtr(tableExpression) in QuerySpec()
H A Ddml-gram-win.h153 dmlpackage::TableExpression* tableExpression; member
H A Ddmlpkg.h1020 QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression);
1028 QuerySpec(SelectFilter* selectFilter, TableExpression* tableExpression,

12