|
MYSQLI_READ_DEFAULT_GROUP
(integer)
|
Lee las opciones del grupo llamado de `my.cnf' o la fila especificada con MYSQLI_READ_DEFAULT_FILE
|
|
MYSQLI_READ_DEFAULT_FILE
(integer)
|
Lee las opciones del archivo especÃficado en vez de my.cnf
|
|
MYSQLI_OPT_CONNECT_TIMEOUT
(integer)
|
Tiempo de espera para la conexión en segundos
|
|
MYSQLI_OPT_LOCAL_INFILE
(integer)
|
Habilita el comando LOAD LOCAL INFILE
|
|
MYSQLI_INIT_COMMAND
(integer)
|
Comando a ejecutar cuando se conecta al servidor MySQL. Será automáticamente
re-ejecutado cuando se vuelva a conectar.
|
|
MYSQLI_CLIENT_SSL
(integer)
|
Usa SSL (protocolo de encripción). Esta opción no debe ser
fijado por programas de apliación; esta es fijada internamente en
la libreria cliente de MySQL
|
|
MYSQLI_CLIENT_COMPRESS
(integer)
|
Usa el protocolo de compresión
|
|
MYSQLI_CLIENT_INTERACTIVE
(integer)
|
Permite tiempo de espera interactivo en segundos (en vez de esperar ciertos
segundos) de inactividad antes de cerrar la conexión. La variable
wait_timeout de sesión del cliente será fijada a el valor de la
variable de sesión interactive_timeout.
|
|
MYSQLI_CLIENT_IGNORE_SPACE
(integer)
|
Permite espacios después de los nombres de las funciones. Esto
hace a todas las funciones palabras reservadas.
|
|
MYSQLI_CLIENT_NO_SCHEMA
(integer)
|
No permite la sintaxis db_name.tbl_name.col_name syntax.
|
|
MYSQLI_CLIENT_MULTI_QUERIES
(integer)
| |
|
MYSQLI_STORE_RESULT
(integer)
|
Para usar resultados con almacenamiento intermedio
|
|
MYSQLI_USE_RESULT
(integer)
|
Para usar resultados sin almacenamiento intermedio
|
|
MYSQLI_ASSOC
(integer)
|
Las columnas son regresadas en una matriz que tiene el nombre del campo
como Ãndice de la matriz.
|
|
MYSQLI_NUM
(integer)
|
Las columnas son regresadas en una matriz teniendo un Ãndice enumerado.
|
|
MYSQLI_BOTH
(integer)
|
Las clumnas son regresadas en una matriz teniendo ambas formas de Ãndice
numérico y con el nombre del campo como Ãndice asociativo.
|
|
MYSQLI_NOT_NULL_FLAG
(integer)
|
Indica que un campo es definido como NOT NULL
|
|
MYSQLI_PRI_KEY_FLAG
(integer)
|
El campo es parte de un Ãndice primario
|
|
MYSQLI_UNIQUE_KEY_FLAG
(integer)
|
El campo es parte de un Ãndice único
|
|
MYSQLI_MULTIPLE_KEY_FLAG
(integer)
|
El campo es parte de un Ãndice.
|
|
MYSQLI_BLOB_FLAG
(integer)
| El campo está definido como BLOB |
|
MYSQLI_UNSIGNED_FLAG
(integer)
| El campo está definido como UNSIGNED |
|
MYSQLI_ZEROFILL_FLAG
(integer)
| El campo está definido como ZEROFILL |
|
MYSQLI_AUTO_INCREMENT_FLAG
(integer)
| El campo está definido como AUTO_INCREMENT |
|
MYSQLI_TIMESTAMP_FLAG
(integer)
| El campo está definido como TIMESTAMP |
|
MYSQLI_SET_FLAG
(integer)
| El campo está definido como SET |
|
MYSQLI_NUM_FLAG
(integer)
| El campo está definido como NUMERIC |
|
MYSQLI_PART_KEY_FLAG
(integer)
| El campo es parte de un Ãndice multiple
|
|
MYSQLI_GROUP_FLAG
(integer)
| El campo es parte de GROUP BY |
|
MYSQLI_TYPE_DECIMAL
(integer)
| El campo está definido como DECIMAL |
|
MYSQLI_TYPE_TINY
(integer)
| El campo está definido como TINYINT |
|
MYSQLI_TYPE_SHORT
(integer)
| El campo está definido como INT |
|
MYSQLI_TYPE_LONG
(integer)
| El campo está definido como INT |
|
MYSQLI_TYPE_FLOAT
(integer)
| El campo está definido como FLOAT |
|
MYSQLI_TYPE_DOUBLE
(integer)
| El campo está definido como DOUBLE |
|
MYSQLI_TYPE_NULL
(integer)
| El campo está definido como DEFAULT NULL |
|
MYSQLI_TYPE_TIMESTAMP
(integer)
| El campo está definido como TIMESTAMP |
|
MYSQLI_TYPE_LONGLONG
(integer)
| El campo está definido como BIGINT |
|
MYSQLI_TYPE_INT24
(integer)
| El campo está definido como MEDIUMINT
|
|
MYSQLI_TYPE_DATE
(integer)
| El campo está definido como DATE |
|
MYSQLI_TYPE_TIME
(integer)
| El campo está definido como TIME |
|
MYSQLI_TYPE_DATETIME
(integer)
| El campo está definido como DATETIME |
|
MYSQLI_TYPE_YEAR
(integer)
| El campo está definido como YEAR |
|
MYSQLI_TYPE_NEWDATE
(integer)
| El campo está definido como DATE |
|
MYSQLI_TYPE_ENUM
(integer)
| El campo está definido como ENUM |
|
MYSQLI_TYPE_SET
(integer)
| El campo está definido como SET |
|
MYSQLI_TYPE_TINY_BLOB
(integer)
| El campo está definido como TINYBLOB |
|
MYSQLI_TYPE_MEDIUM_BLOB
(integer)
| El campo está definido como MEDIUMBLOB |
|
MYSQLI_TYPE_LONG_BLOB
(integer)
| El campo está definido como LONGBLOB |
|
MYSQLI_TYPE_BLOB
(integer)
| El campo está definido como BLOB |
|
MYSQLI_TYPE_VAR_STRING
(integer)
| El campo está definido como VARCHAR |
|
MYSQLI_TYPE_STRING
(integer)
| El campo está definido como CHAR |
|
MYSQLI_TYPE_GEOMETRY
(integer)
| El campo está definido como GEOMETRY |
|
MYSQLI_NEED_DATA
(integer)
| Obtiene más información para varibles enlazadas (bind)
|
|
MYSQLI_NO_DATA
(integer)
| No obtiene más información para variables enlazadas (bind)
|