db\DataReader close()

close() public method Closes the reader. This frees up the resources allocated for executing this SQL statement. Read attempts after this method call are unpredictable. public void close ( )

db\DataReader bindColumn()

bindColumn() public method Binds a column to a PHP variable. When rows of data are being fetched, the corresponding column value will be set in the variable. Note, the fetch mode must include PDO::FETCH_BOUND. See also http://www.php.net/manual/en/function.PDOStatement-bindColumn.php. public void bindColumn ( $column, &$value, $dataType = null )$column integer|string Number of the column (1-indexed) or name of the column in the result set. If using the column name, be aware that th

db\DataReader $rowCount

$rowCount public read-only property Number of rows contained in the result. public integer getRowCount ( )

db\DataReader $isClosed

$isClosed public read-only property Whether the reader is closed or not. public boolean getIsClosed ( )

db\DataReader $fetchMode

$fetchMode public write-only property Fetch mode public void setFetchMode ( $mode )

db\DataReader $columnCount

$columnCount public read-only property The number of columns in the result set. public integer getColumnCount ( )

db\cubrid\Schema setTransactionIsolationLevel()

setTransactionIsolationLevel() public method Sets the isolation level of the current transaction. See also http://www.cubrid.org/manual/91/en/sql/transaction.html#database-concurrency. public void setTransactionIsolationLevel ( $level )$level string The transaction isolation level to use for this transaction. This can be one of yii\db\Transaction::READ_UNCOMMITTED, yii\db\Transaction::READ_COMMITTED, yii\db\Transaction::REPEATABLE_READ and yii\db\Transaction::SERIALIZABLE but also a stri

db\cubrid\Schema releaseSavepoint()

releaseSavepoint() public method Releases an existing savepoint. public void releaseSavepoint ( $name )$name string The savepoint name

db\cubrid\Schema quoteSimpleTableName()

quoteSimpleTableName() public method Quotes a table name for use in a query. A simple table name has no schema prefix. public string quoteSimpleTableName ( $name )$name string Table name return string The properly quoted table name

db\cubrid\Schema quoteSimpleColumnName()

quoteSimpleColumnName() public method Quotes a column name for use in a query. A simple column name has no prefix. public string quoteSimpleColumnName ( $name )$name string Column name return string The properly quoted column name