/**
  * Returns the number of rows affected by last query
  *
  * @return int|false
  */
 public function affectedRows()
 {
     return $this->_lastResult ? $this->_lastResult->affectedRows() : false;
 }
Example #2
0
/**
 * returns concatenated string of human readable field flags
 *
 * @param   PMA_DrizzleResult  $result
 * @param   int                $i       field
 * @return  string  field flags
 */
function PMA_DBI_field_flags($result, $i)
{
    $columns = $result->getColumns();
    $f = $columns[$i];
    $type = $f->typeDrizzle();
    $charsetnr = $f->charset();
    $f = $f->flags();
    $flags = '';
    if ($f & DRIZZLE_COLUMN_FLAGS_UNIQUE_KEY) {
        $flags .= 'unique ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_NUM) {
        $flags .= 'num ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_PART_KEY) {
        $flags .= 'part_key ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_SET) {
        $flags .= 'set ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_TIMESTAMP) {
        $flags .= 'timestamp ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_AUTO_INCREMENT) {
        $flags .= 'auto_increment ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_ENUM) {
        $flags .= 'enum ';
    }
    // See http://dev.mysql.com/doc/refman/6.0/en/c-api-datatypes.html:
    // to determine if a string is binary, we should not use MYSQLI_BINARY_FLAG
    // but instead the charsetnr member of the MYSQL_FIELD
    // structure. Watch out: some types like DATE returns 63 in charsetnr
    // so we have to check also the type.
    // Unfortunately there is no equivalent in the mysql extension.
    if (($type == DRIZZLE_COLUMN_TYPE_DRIZZLE_BLOB || $type == DRIZZLE_COLUMN_TYPE_DRIZZLE_VARCHAR) && 63 == $charsetnr) {
        $flags .= 'binary ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_ZEROFILL) {
        $flags .= 'zerofill ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_UNSIGNED) {
        $flags .= 'unsigned ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_BLOB) {
        $flags .= 'blob ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_MULTIPLE_KEY) {
        $flags .= 'multiple_key ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_UNIQUE_KEY) {
        $flags .= 'unique_key ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_PRI_KEY) {
        $flags .= 'primary_key ';
    }
    if ($f & DRIZZLE_COLUMN_FLAGS_NOT_NULL) {
        $flags .= 'not_null ';
    }
    return trim($flags);
}
 /**
  * returns concatenated string of human readable field flags
  *
  * @param PMA_DrizzleResult $result Drizzle result object
  * @param int               $i      field
  *
  * @return string field flags
  */
 public function fieldFlags($result, $i)
 {
     $columns = $result->getColumns();
     $f = $columns[$i];
     $type = $f->typeDrizzle();
     $charsetnr = $f->charset();
     $f = $f->flags();
     $flags = array();
     foreach ($GLOBALS['pma_drizzle_flag_names'] as $flag => $name) {
         if ($f & $flag) {
             $flags[] = $name;
         }
     }
     // See http://dev.mysql.com/doc/refman/6.0/en/c-api-datatypes.html:
     // to determine if a string is binary, we should not use MYSQLI_BINARY_FLAG
     // but instead the charsetnr member of the MYSQL_FIELD
     // structure. Watch out: some types like DATE returns 63 in charsetnr
     // so we have to check also the type.
     // Unfortunately there is no equivalent in the mysql extension.
     if (($type == DRIZZLE_COLUMN_TYPE_DRIZZLE_BLOB || $type == DRIZZLE_COLUMN_TYPE_DRIZZLE_VARCHAR) && 63 == $charsetnr) {
         $flags[] = 'binary';
     }
     return implode(' ', $flags);
 }