libasynql
3.2.0
Asynchronous MySQL access library for PocketMine plugins.
MysqlTypes.php
Go to the documentation of this file.
1
<?php
2
3
/*
4
* libasynql
5
*
6
* Copyright (C) 2018 SOFe
7
*
8
* Licensed under the Apache License, Version 2.0 (the "License");
9
* you may not use this file except in compliance with the License.
10
* You may obtain a copy of the License at
11
*
12
* http://www.apache.org/licenses/LICENSE-2.0
13
*
14
* Unless required by applicable law or agreed to in writing, software
15
* distributed under the License is distributed on an "AS IS" BASIS,
16
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
* See the License for the specific language governing permissions and
18
* limitations under the License.
19
*/
20
21
declare(strict_types=1);
22
23
namespace
poggit\libasynql\mysqli
;
24
29
interface
MysqlTypes
{
30
public
const
DECIMAL
= 0x00;
31
public
const
TINY
= 0x01;
32
public
const
SHORT
= 0x02;
33
public
const
LONG
= 0x03;
34
public
const
FLOAT
= 0x04;
35
public
const
DOUBLE
= 0x05;
36
public
const
NULL
= 0x06;
37
public
const
TIMESTAMP
= 0x07;
38
public
const
LONGLONG
= 0x08;
39
public
const
INT24
= 0x09;
40
public
const
DATE
= 0x0a;
41
public
const
TIME
= 0x0b;
42
public
const
DATETIME
= 0x0c;
43
public
const
YEAR
= 0x0d;
44
public
const
NEWDATE
= 0x0e;
45
public
const
VARCHAR
= 0x0f;
46
public
const
BIT
= 0x10;
47
public
const
TIMESTAMP2
= 0x11;
48
public
const
DATETIME2
= 0x12;
49
public
const
TIME2
= 0x13;
50
public
const
NEWDECIMAL
= 0xf6;
51
public
const
ENUM
= 0xf7;
52
public
const
SET
= 0xf8;
53
public
const
TINY_BLOB
= 0xf9;
54
public
const
MEDIUM_BLOB
= 0xfa;
55
public
const
LONG_BLOB
= 0xfb;
56
public
const
BLOB
= 0xfc;
57
public
const
VAR_STRING
= 0xfd;
58
public
const
STRING
= 0xfe;
59
public
const
GEOMETRY
= 0xff;
60
}
poggit\libasynql\mysqli\MysqlTypes
Definition:
MysqlTypes.php:29
poggit\libasynql\mysqli\MysqlTypes\TINY
const TINY
Definition:
MysqlTypes.php:31
poggit\libasynql\mysqli\MysqlTypes\VAR_STRING
const VAR_STRING
Definition:
MysqlTypes.php:57
poggit\libasynql\mysqli\MysqlTypes\NEWDATE
const NEWDATE
Definition:
MysqlTypes.php:44
poggit\libasynql\mysqli\MysqlTypes\BLOB
const BLOB
Definition:
MysqlTypes.php:56
poggit\libasynql\mysqli\MysqlTypes\SET
const SET
Definition:
MysqlTypes.php:52
poggit\libasynql\mysqli
Definition:
MysqlColumnInfo.php:23
poggit\libasynql\mysqli\MysqlTypes\TINY_BLOB
const TINY_BLOB
Definition:
MysqlTypes.php:53
poggit\libasynql\mysqli\MysqlTypes\TIMESTAMP2
const TIMESTAMP2
Definition:
MysqlTypes.php:47
poggit\libasynql\mysqli\MysqlTypes\DATE
const DATE
Definition:
MysqlTypes.php:40
poggit\libasynql\mysqli\MysqlTypes\TIMESTAMP
const TIMESTAMP
Definition:
MysqlTypes.php:37
poggit\libasynql\mysqli\MysqlTypes\LONG
const LONG
Definition:
MysqlTypes.php:33
poggit\libasynql\mysqli\MysqlTypes\NEWDECIMAL
const NEWDECIMAL
Definition:
MysqlTypes.php:50
poggit\libasynql\mysqli\MysqlTypes\VARCHAR
const VARCHAR
Definition:
MysqlTypes.php:45
poggit\libasynql\mysqli\MysqlTypes\DATETIME
const DATETIME
Definition:
MysqlTypes.php:42
poggit\libasynql\mysqli\MysqlTypes\MEDIUM_BLOB
const MEDIUM_BLOB
Definition:
MysqlTypes.php:54
poggit\libasynql\mysqli\MysqlTypes\DATETIME2
const DATETIME2
Definition:
MysqlTypes.php:48
poggit\libasynql\mysqli\MysqlTypes\DOUBLE
const DOUBLE
Definition:
MysqlTypes.php:35
poggit\libasynql\mysqli\MysqlTypes\YEAR
const YEAR
Definition:
MysqlTypes.php:43
poggit\libasynql\mysqli\MysqlTypes\INT24
const INT24
Definition:
MysqlTypes.php:39
poggit\libasynql\mysqli\MysqlTypes\ENUM
const ENUM
Definition:
MysqlTypes.php:51
poggit\libasynql\mysqli\MysqlTypes\BIT
const BIT
Definition:
MysqlTypes.php:46
poggit\libasynql\mysqli\MysqlTypes\LONG_BLOB
const LONG_BLOB
Definition:
MysqlTypes.php:55
poggit\libasynql\mysqli\MysqlTypes\STRING
const STRING
Definition:
MysqlTypes.php:58
poggit\libasynql\mysqli\MysqlTypes\TIME2
const TIME2
Definition:
MysqlTypes.php:49
poggit\libasynql\mysqli\MysqlTypes\LONGLONG
const LONGLONG
Definition:
MysqlTypes.php:38
poggit\libasynql\mysqli\MysqlTypes\NULL
const NULL
Definition:
MysqlTypes.php:36
poggit\libasynql\mysqli\MysqlTypes\FLOAT
const FLOAT
Definition:
MysqlTypes.php:34
poggit\libasynql\mysqli\MysqlTypes\SHORT
const SHORT
Definition:
MysqlTypes.php:32
poggit\libasynql\mysqli\MysqlTypes\GEOMETRY
const GEOMETRY
Definition:
MysqlTypes.php:59
poggit\libasynql\mysqli\MysqlTypes\TIME
const TIME
Definition:
MysqlTypes.php:41
poggit\libasynql\mysqli\MysqlTypes\DECIMAL
const DECIMAL
Definition:
MysqlTypes.php:30
libasynql
src
poggit
libasynql
mysqli
MysqlTypes.php
Generated by
1.8.14