MySQL Improved Extension (
Mysqli
)
2337
MYSQLI_INIT_COMMAND
Command to execute when connecting to MySQL server. Will
automatically be re-executed when reconnecting.
MYSQLI_CLIENT_SSL
Use SSL (encrypted protocol). This option should not be set by
application programs; it is set internally in the MySQL client library
MYSQLI_CLIENT_COMPRESS
Use compression protocol
MYSQLI_CLIENT_INTERACTIVE
Allow
interactive_timeout
seconds (instead of
wait_timeout
seconds) of inactivity before closing the connection.
The client's session
wait_timeout
variable will be set to the value
of the session
interactive_timeout
variable.
MYSQLI_CLIENT_IGNORE_SPACE
Allow spaces after function names. Makes all functions names
reserved words.
MYSQLI_CLIENT_NO_SCHEMA
Don't allow the
db_name.tbl_name.col_name
syntax.
MYSQLI_CLIENT_MULTI_QUERIES
Allows multiple semicolon-delimited queries in a single
mysqli_query
call.
MYSQLI_STORE_RESULT
For using buffered resultsets
MYSQLI_USE_RESULT
For using unbuffered resultsets
MYSQLI_ASSOC
Columns are returned into the array having the fieldname as the
array index.
MYSQLI_NUM
Columns are returned into the array having an enumerated index.
MYSQLI_BOTH
Columns are returned into the array having both a numerical index
and the fieldname as the associative index.
MYSQLI_NOT_NULL_FLAG
Indicates that a field is defined as
NOT NULL
MYSQLI_PRI_KEY_FLAG
Field is part of a primary index
MYSQLI_UNIQUE_KEY_FLAG
Field is part of a unique index.
MYSQLI_MULTIPLE_KEY_FLAG
Field is part of an index.
MYSQLI_BLOB_FLAG
Field is defined as
BLOB
MYSQLI_UNSIGNED_FLAG
Field is defined as
UNSIGNED
MYSQLI_ZEROFILL_FLAG
Field is defined as
ZEROFILL
MYSQLI_AUTO_INCREMENT_FLAG
Field is defined as
AUTO_INCREMENT
MYSQLI_TIMESTAMP_FLAG
Field is defined as
TIMESTAMP
MYSQLI_SET_FLAG
Field is defined as
SET
MYSQLI_NUM_FLAG
Field is defined as
NUMERIC
MYSQLI_PART_KEY_FLAG
Field is part of an multi-index
MYSQLI_GROUP_FLAG
Field is part of
GROUP BY
MYSQLI_TYPE_DECIMAL
Field is defined as
DECIMAL
MYSQLI_TYPE_NEWDECIMAL
Precision math
DECIMAL
or
NUMERIC
field (MySQL 5.0.3 and up)
MYSQLI_TYPE_BIT
Field is defined as
BIT
(MySQL 5.0.3 and up)
Summary of Contents for 5.0
Page 1: ...MySQL 5 0 Reference Manual ...
Page 18: ...xviii ...
Page 60: ...40 ...
Page 396: ...376 ...
Page 578: ...558 ...
Page 636: ...616 ...
Page 844: ...824 ...
Page 1234: ...1214 ...
Page 1427: ...MySQL Proxy Scripting 1407 ...
Page 1734: ...1714 ...
Page 1752: ...1732 ...
Page 1783: ...Configuring Connector ODBC 1763 ...
Page 1793: ...Connector ODBC Examples 1773 ...
Page 1839: ...Connector Net Installation 1819 2 You must choose the type of installation to perform ...
Page 2850: ...2830 ...
Page 2854: ...2834 ...
Page 2928: ...2908 ...
Page 3000: ...2980 ...
Page 3122: ...3102 ...
Page 3126: ...3106 ...
Page 3174: ...3154 ...
Page 3232: ...3212 ...