CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Reporting Security Issues
    • Privacy Policy
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Get Involved
    • Issues (Github)
    • Bakery
    • Featured Resources
    • Training
    • Meetups
    • My CakePHP
    • CakeFest
    • Newsletter
    • Linkedin
    • YouTube
    • Facebook
    • Twitter
    • Mastodon
    • Help & Support
    • Forum
    • Stack Overflow
    • IRC
    • Slack
    • Paid Support
CakePHP

C CakePHP 5.0 Chiffon API

  • Project:
    • CakePHP
      • CakePHP
      • Authentication
      • Authorization
      • Chronos
      • Elastic Search
      • Queue
  • Version:
    • 5.0
      • 5.2
      • 5.1
      • 5.0
      • 4.6
      • 4.5
      • 4.4
      • 4.3
      • 4.2
      • 4.1
      • 4.0
      • 3.10
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Namespaces

  • Global
  • Cake
    • Cache
    • Collection
    • Command
    • Console
    • Controller
    • Core
    • Database
      • Driver
      • Exception
      • Expression
      • Log
      • Query
      • Retry
      • Schema
      • Statement
      • Type
    • Datasource
    • Error
    • Event
    • Form
    • Http
    • I18n
    • Log
    • Mailer
    • Network
    • ORM
    • Routing
    • TestSuite
    • Utility
    • Validation
    • View

Class QueryFactory

Factory class for generating instances of Select, Insert, Update, Delete queries.

Namespace: Cake\Database\Query

Method Summary

  • __construct() public

    Constructor/

  • delete() public

    Create a new DeleteQuery instance.

  • insert() public

    Create a new InsertQuery instance.

  • select() public

    Create a new SelectQuery instance.

  • update() public

    Create a new UpdateQuery instance.

Method Detail

__construct() ¶ public

__construct(Cake\Database\Connection $connection)

Constructor/

Parameters
Cake\Database\Connection $connection

Connection instance.

delete() ¶ public

delete(string|null $table = null, array $conditions = [], array<string, string> $types = []): Cake\Database\Query\DeleteQuery

Create a new DeleteQuery instance.

Parameters
string|null $table optional

The table to delete rows from.

array $conditions optional

Conditions to be set for the delete statement.

array<string, string> $types optional

Associative array containing the types to be used for casting.

Returns
Cake\Database\Query\DeleteQuery

insert() ¶ public

insert(string|null $table = null, array $values = [], array<int|string, string> $types = []): Cake\Database\Query\InsertQuery

Create a new InsertQuery instance.

Parameters
string|null $table optional

The table to insert rows into.

array $values optional

Associative array of column => value to be inserted.

array<int|string, string> $types optional

Associative array containing the types to be used for casting.

Returns
Cake\Database\Query\InsertQuery

select() ¶ public

select(Cake\Database\ExpressionInterface|Closure|array|string|float|int $fields = [], array|string $table = [], array<string, string> $types = []): Cake\Database\Query\SelectQuery

Create a new SelectQuery instance.

Parameters
Cake\Database\ExpressionInterface|Closure|array|string|float|int $fields optional

Fields/columns list for the query.

array|string $table optional

List of tables to query.

array<string, string> $types optional

Associative array containing the types to be used for casting.

Returns
Cake\Database\Query\SelectQuery

update() ¶ public

update(Cake\Database\ExpressionInterface|string|null $table = null, array $values = [], array $conditions = [], array<string, string> $types = []): Cake\Database\Query\UpdateQuery

Create a new UpdateQuery instance.

Parameters
Cake\Database\ExpressionInterface|string|null $table optional

The table to update rows of.

array $values optional

Values to be updated.

array $conditions optional

Conditions to be set for the update statement.

array<string, string> $types optional

Associative array containing the types to be used for casting.

Returns
Cake\Database\Query\UpdateQuery
OpenHub
Pingping
Linode
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Reporting Security Issues
  • Privacy Policy
  • Logos & Trademarks
  • Community
  • Get Involved
  • Issues (Github)
  • Bakery
  • Featured Resources
  • Training
  • Meetups
  • My CakePHP
  • CakeFest
  • Newsletter
  • Linkedin
  • YouTube
  • Facebook
  • Twitter
  • Mastodon
  • Help & Support
  • Forum
  • Stack Overflow
  • IRC
  • Slack
  • Paid Support

Generated using CakePHP API Docs