libasynql
3.2.0
Asynchronous MySQL access library for PocketMine plugins.
|
Data Fields | |
const | NOT_NULL_FLAG = 1 << 0 |
const | PRI_KEY_FLAG = 1 << 1 |
const | UNIQUE_KEY_FLAG = 1 << 2 |
const | MULTIPLE_KEY_FLAG = 1 << 3 |
const | BLOB_FLAG = 1 << 4 |
const | UNSIGNED_FLAG = 1 << 5 |
const | ZEROFILL_FLAG = 1 << 6 |
const | BINARY_FLAG = 1 << 7 |
const | ENUM_FLAG = 1 << 8 |
const | AUTO_INCREMENT_FLAG = 1 << 9 |
const | TIMESTAMP_FLAG = 1 << 10 |
const | SET_FLAG = 1 << 11 |
const | NO_DEFAULT_VALUE_FLAG = 1 << 12 |
const | ON_UPDATE_NOW_FLAG = 1 << 13 |
const | NUM_FLAG = 1 << 15 |
const | GET_FIXED_FIELDS_FLAG = 1 << 18 |
const | FIELD_IN_PART_FUNC_FLAG = 1 << 19 |
Result field flags returned by MySQL
Definition at line 29 of file MysqlFlags.php.
const AUTO_INCREMENT_FLAG = 1 << 9 |
field is a autoincrement field
Definition at line 51 of file MysqlFlags.php.
const BINARY_FLAG = 1 << 7 |
Field is binary
Definition at line 45 of file MysqlFlags.php.
const BLOB_FLAG = 1 << 4 |
Field is a blob
Definition at line 39 of file MysqlFlags.php.
const ENUM_FLAG = 1 << 8 |
field is an enum
Definition at line 49 of file MysqlFlags.php.
const FIELD_IN_PART_FUNC_FLAG = 1 << 19 |
Field part of partition func
Definition at line 66 of file MysqlFlags.php.
const GET_FIXED_FIELDS_FLAG = 1 << 18 |
Used to get fields in item tree
Definition at line 64 of file MysqlFlags.php.
const MULTIPLE_KEY_FLAG = 1 << 3 |
Field is part of a key
Definition at line 37 of file MysqlFlags.php.
const NO_DEFAULT_VALUE_FLAG = 1 << 12 |
Field doesn't have default value
Definition at line 57 of file MysqlFlags.php.
const NOT_NULL_FLAG = 1 << 0 |
Field can't be NULL
Definition at line 31 of file MysqlFlags.php.
const NUM_FLAG = 1 << 15 |
Field is num (for clients)
Definition at line 61 of file MysqlFlags.php.
const ON_UPDATE_NOW_FLAG = 1 << 13 |
Field is set to NOW on UPDATE
Definition at line 59 of file MysqlFlags.php.
const PRI_KEY_FLAG = 1 << 1 |
Field is part of a primary key
Definition at line 33 of file MysqlFlags.php.
const SET_FLAG = 1 << 11 |
field is a set
Definition at line 55 of file MysqlFlags.php.
const TIMESTAMP_FLAG = 1 << 10 |
Field is a timestamp
Definition at line 53 of file MysqlFlags.php.
const UNIQUE_KEY_FLAG = 1 << 2 |
Field is part of a unique key
Definition at line 35 of file MysqlFlags.php.
const UNSIGNED_FLAG = 1 << 5 |
Field is unsigned
Definition at line 41 of file MysqlFlags.php.
const ZEROFILL_FLAG = 1 << 6 |
Field is zerofill
Definition at line 43 of file MysqlFlags.php.