db\Connection $password

$password public property The password for establishing DB connection. Defaults to null meaning no password to use. public string $password = null

db\Connection $schemaCache

$schemaCache public property The cache object or the ID of the cache application component that is used to cache the table metadata. See also $enableSchemaCache. public yii\caching\Cache|string $schemaCache = 'cache'

debug\panels\ConfigPanel getDetail()

getDetail() public method public string getDetail ( )return string Content that is displayed in debugger detail view

db\cubrid\Schema loadColumnSchema()

loadColumnSchema() protected method Loads the column information into a yii\db\ColumnSchema object. protected yii\db\ColumnSchema loadColumnSchema ( $info )$info array Column information return yii\db\ColumnSchema The column schema object

db\cubrid\QueryBuilder addCommentOnColumn()

addCommentOnColumn() public method (available since version 2.0.8) Builds a SQL command for adding comment to column public string addCommentOnColumn ( $table, $column, $comment )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $column string The name of the column to be commented. The column name will be properly quoted by the method. $comment string The text of the comment to be added. The comment will be properly quoted

db\DataReader read()

read() public method Advances the reader to the next row in a result set. public array read ( )return array The current row, false if no more row available

debug\controllers\DefaultController $module

$module public property public yii\debug\Module $module = null

db\Migration safeDown()

safeDown() public method This method contains the logic to be executed when removing this migration. This method differs from down() in that the DB logic implemented here will be enclosed within a DB transaction. Child classes may implement this method instead of down() if the DB logic needs to be within a transaction. public boolean safeDown ( )return boolean Return a false value to indicate the migration fails and should not proceed further. All other return values mean the migration s

mail\BaseMailer getView()

getView() public method public yii\web\View getView ( )return yii\web\View View instance.

db\mssql\QueryBuilder dropCommentFromTable()

dropCommentFromTable() public method (available since version 2.0.8) Builds a SQL command for adding comment to table public string dropCommentFromTable ( $table )$table string The table whose column is to be commented. The table name will be properly quoted by the method. return string The SQL statement for adding comment on column