Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « mysql.connector »

Classe « FieldFlag »

Informations générales

Héritage

builtins.object
    _Constants
        _Flags
            FieldFlag

Définition

class FieldFlag(_Flags):

Description [extrait de FieldFlag.__doc__]

MySQL Field Flags

    Field flags as found in MySQL sources mysql-src/include/mysql_com.h
    

Constructeur(s)

Signature du constructeur Description
__init__(self, /, *args, **kwargs) Initialize self. See help(type(self)) for accurate signature. [extrait de __init__.__doc__]

Liste des attributs statiques

Nom de l'attribut Valeur
AUTO_INCREMENT512
BINARY128
BINCMP131072
BLOB16
desc{'NOT_NULL': (1, "Field can't be NULL"), 'PRI_KEY': (2, 'Field is part of a primary key'), 'UNIQUE_KEY': (4, 'Field is part of a unique key'), 'MULTIPLE_KEY': (8, 'Field is part of a key'), 'BLOB': (16, 'Field is a blob'), 'UNSIGNED': (32, 'Field is unsigned'), 'ZEROFILL': (64, 'Field is zerofill'), 'BINARY': (128, 'Field is binary '), 'ENUM': (256, 'field is an enum'), 'AUTO_INCREMENT': (512, 'field is a autoincrement field'), 'TIMESTAMP': (1024, 'Field is a timestamp'), 'SET': (2048, 'field is a set'), 'NO_DEFAULT_VALUE': (4096, "Field doesn't have default value"), 'ON_UPDATE_NOW': (8192, 'Field is set to NOW on UPDATE'), 'NUM': (16384, 'Field is num (for clients)'), 'PART_KEY': (32768, 'Intern; Part of some key'), 'GROUP': (16384, 'Intern: Group field'), 'UNIQUE': (65536, 'Intern: Used by sql_yacc'), 'BINCMP': (131072, 'Intern: Used by sql_yacc'), 'GET_FIXED_FIELDS': (262144, 'Used to get fields in item tree'), 'FIELD_IN_PART_FUNC': (524288, 'Field part of partition func'), 'FIELD_IN_ADD_INDEX': (1048576, 'Intern: Field used in ADD INDEX'), 'FIELD_IS_RENAMED': (2097152, 'Intern: Field is being renamed')}
ENUM256
FIELD_IN_ADD_INDEX1048576
FIELD_IN_PART_FUNC524288
FIELD_IS_RENAMED2097152
GET_FIXED_FIELDS262144
GROUP16384
MULTIPLE_KEY8
NO_DEFAULT_VALUE4096
NOT_NULL1
NUM16384
ON_UPDATE_NOW8192
PART_KEY32768
prefix
PRI_KEY2
SET2048
TIMESTAMP1024
UNIQUE65536
UNIQUE_KEY4
UNSIGNED32
ZEROFILL64

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription

Méthodes héritées de la classe _Flags

__init_subclass__, __subclasshook__, get_bit_info

Méthodes héritées de la classe _Constants

get_desc, get_full_info, get_info

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__