db\pgsql\QueryBuilder checkIntegrity()

checkIntegrity() public method Builds a SQL statement for enabling or disabling integrity check. public string checkIntegrity ( $check = true, $schema = '', $table = '' )$check boolean Whether to turn on or off the integrity check. $schema string The schema of the tables. $table string The table name. return string The SQL statement for checking integrity

mongodb\gii\model\Generator $description

$description public read-only property The detailed description of the generator. public string getDescription ( )

gii\generators\extension\Generator successMessage()

successMessage() public method Returns the message to be displayed when the newly generated code is saved successfully. Child classes may override this method to customize the message. public string successMessage ( )return string The message to be displayed when the newly generated code is saved successfully.

base\Security generateRandomString()

generateRandomString() public method Generates a random string of specified length. The string generated matches [A-Za-z0-9_-]+ and is transparent to URL-encoding. public string generateRandomString ( $length = 32 )$length integer The length of the key in characters return string The generated random key throws yii\base\Exception on failure.

db\Query addSelect()

addSelect() public method Add more columns to the SELECT part of the query. Note, that if select() has not been specified before, you should include * explicitly if you want to select all remaining columns too: $query->addSelect(["*", "CONCAT(first_name, ' ', last_name) AS full_name"])->one(); See also select(). public $this addSelect ( $columns )$columns string|array|yii\db\Expression The columns to add to the select. See select() for more details about the format of this param

authclient\AuthAction $successUrl

$successUrl public property Successful URL. public string getSuccessUrl ( )public void setSuccessUrl ( $url )

sphinx\ActiveRecord callSnippets()

callSnippets() public static method Builds a snippet from provided data and query, using specified index settings. public static string|array callSnippets ( $source, $match, $options = [] )$source string|array Is the source data to extract a snippet from. It could be either a single string or array of strings. $match string The full-text query to build snippets for. $options array List of options in format: optionName => optionValue return string|array Built snippet in case

db\Query andWhere()

andWhere() public method Adds an additional WHERE condition to the existing one. The new condition and the existing one will be joined using the 'AND' operator. See also: where() orWhere() public $this andWhere ( $condition, $params = [] )$condition string|array|yii\db\Expression The new WHERE condition. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

elasticsearch\ActiveRecord getScore()

getScore() public method public float getScore ( )return float Returns the score of this record when it was retrieved via a find() query.

db\Command dropPrimaryKey()

dropPrimaryKey() public method Creates a SQL command for removing a primary key constraint to an existing table. public $this dropPrimaryKey ( $name, $table )$name string The name of the primary key constraint to be removed. $table string The table that the primary key constraint will be removed from. return $this The command object itself