Method | Description | Defined By |
__call() |
Calls the named method which is not a class method. |
yii\base\Component |
__clone() |
This method is called after the object is created by cloning an existing one. |
yii\base\Component |
__construct() |
Constructor. |
yii\base\BaseObject |
__get() |
Returns the value of a component property. |
yii\base\Component |
__isset() |
Checks if a property is set, i.e. defined and not null. |
yii\base\Component |
__set() |
Sets the value of a component property. |
yii\base\Component |
__unset() |
Sets a component property to be null. |
yii\base\Component |
addCheck() |
Creates a SQL command for adding a check constraint to an existing table. |
yii\db\Command |
addColumn() |
Creates a SQL command for adding a new DB column. |
yii\db\Command |
addCommentOnColumn() |
Builds a SQL command for adding comment to column. |
yii\db\Command |
addDefaultValue() |
Creates a SQL command for adding a default value constraint to an existing table. |
yii\db\Command |
addForeignKey() |
Creates a SQL command for adding a foreign key constraint to an existing table. |
yii\db\Command |
addPrimaryKey() |
Creates a SQL command for adding a primary key constraint to an existing table. |
yii\db\Command |
addUnique() |
Creates a SQL command for adding an unique constraint to an existing table. |
yii\db\Command |
alterColumn() |
Creates a SQL command for changing the definition of a column. |
yii\db\Command |
attachBehavior() |
Attaches a behavior to this component. |
yii\base\Component |
attachBehaviors() |
Attaches a list of behaviors to the component. |
yii\base\Component |
batchInsert() |
Creates a batch INSERT command. |
yii\db\Command |
behaviors() |
Returns a list of behaviors that this component should behave as. |
yii\base\Component |
bindParam() |
Binds a parameter to the SQL statement to be executed. |
yii\db\Command |
bindValue() |
Binds a value to a parameter. |
yii\db\Command |
bindValues() |
Binds a list of values to the corresponding parameters. |
yii\db\Command |
cache() |
Enables query cache for this command. |
yii\db\Command |
canGetProperty() |
Returns a value indicating whether a property can be read. |
yii\base\Component |
canSetProperty() |
Returns a value indicating whether a property can be set. |
yii\base\Component |
cancel() |
Cancels the execution of the SQL statement. |
yii\db\Command |
checkIntegrity() |
Builds a SQL command for enabling or disabling integrity check. |
yii\db\Command |
className() |
Returns the fully qualified name of this class. |
yii\base\BaseObject |
createIndex() |
Creates a SQL command for creating a new index. |
yii\db\Command |
createTable() |
Creates a SQL command for creating a new DB table. |
yii\db\Command |
createView() |
Creates a SQL View. |
yii\db\Command |
delete() |
Creates a DELETE command. |
yii\db\Command |
detachBehavior() |
Detaches a behavior from the component. |
yii\base\Component |
detachBehaviors() |
Detaches all behaviors from the component. |
yii\base\Component |
dropCheck() |
Creates a SQL command for dropping a check constraint. |
yii\db\Command |
dropColumn() |
Creates a SQL command for dropping a DB column. |
yii\db\Command |
dropCommentFromColumn() |
Builds a SQL command for dropping comment from column. |
yii\db\Command |
dropDefaultValue() |
Creates a SQL command for dropping a default value constraint. |
yii\db\Command |
dropForeignKey() |
Creates a SQL command for dropping a foreign key constraint. |
yii\db\Command |
dropIndex() |
Creates a SQL command for dropping an index. |
yii\db\Command |
dropPrimaryKey() |
Creates a SQL command for removing a primary key constraint to an existing table. |
yii\db\Command |
dropTable() |
Creates a SQL command for dropping a DB table. |
yii\db\Command |
dropUnique() |
Creates a SQL command for dropping an unique constraint. |
yii\db\Command |
dropView() |
Drops a SQL View. |
yii\db\Command |
ensureBehaviors() |
Makes sure that the behaviors declared in behaviors() are attached to this component. |
yii\base\Component |
execute() |
{@inheritdoc} |
yii\db\sqlite\Command |
executeResetSequence() |
Executes a db command resetting the sequence value of a table's primary key. |
yii\db\Command |
getBehavior() |
Returns the named behavior object. |
yii\base\Component |
getBehaviors() |
Returns all behaviors attached to this component. |
yii\base\Component |
getRawSql() |
Returns the raw SQL by inserting parameter values into the corresponding placeholders in $sql. |
yii\db\Command |
getSql() |
Returns the SQL statement for this command. |
yii\db\Command |
hasEventHandlers() |
Returns a value indicating whether there is any handler attached to the named event. |
yii\base\Component |
hasMethod() |
Returns a value indicating whether a method is defined. |
yii\base\Component |
hasProperty() |
Returns a value indicating whether a property is defined for this component. |
yii\base\Component |
init() |
Initializes the object. |
yii\base\BaseObject |
insert() |
Creates an INSERT command. |
yii\db\Command |
noCache() |
Disables query cache for this command. |
yii\db\Command |
off() |
Detaches an existing event handler from this component. |
yii\base\Component |
on() |
Attaches an event handler to an event. |
yii\base\Component |
prepare() |
Prepares the SQL statement to be executed. |
yii\db\Command |
query() |
Executes the SQL statement and returns query result. |
yii\db\Command |
queryAll() |
Executes the SQL statement and returns ALL rows at once. |
yii\db\Command |
queryColumn() |
Executes the SQL statement and returns the first column of the result. |
yii\db\Command |
queryOne() |
Executes the SQL statement and returns the first row of the result. |
yii\db\Command |
queryScalar() |
Executes the SQL statement and returns the value of the first column in the first row of data. |
yii\db\Command |
renameColumn() |
Creates a SQL command for renaming a column. |
yii\db\Command |
renameTable() |
Creates a SQL command for renaming a DB table. |
yii\db\Command |
resetSequence() |
Creates a SQL command for resetting the sequence value of a table's primary key. |
yii\db\Command |
setRawSql() |
Specifies the SQL statement to be executed. The SQL statement will not be modified in any way. |
yii\db\Command |
setSql() |
Specifies the SQL statement to be executed. The SQL statement will be quoted using yii\db\Connection::quoteSql(). |
yii\db\Command |
trigger() |
Triggers an event. |
yii\base\Component |
truncateTable() |
Creates a SQL command for truncating a DB table. |
yii\db\Command |
update() |
Creates an UPDATE command. |
yii\db\Command |
upsert() |
Creates a command to insert rows into a database table if
they do not already exist (matching unique constraints),
or update them if they do. |
yii\db\Command |
Signup or Login in order to comment.