From 622921a3ff456c81f0e1b67ad51ffdc5a13c3100 Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Wed, 28 Jan 2004 23:19:38 +0000 Subject: [PATCH] docu update git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150060 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysqli/WARNING.txt | 10 -- reference/mysqli/constants.xml | 165 ++++++++----------- reference/mysqli/reference.xml | 279 +++++++++++++++++++++++++++++++-- 3 files changed, 330 insertions(+), 124 deletions(-) delete mode 100644 reference/mysqli/WARNING.txt diff --git a/reference/mysqli/WARNING.txt b/reference/mysqli/WARNING.txt deleted file mode 100644 index 5a20bfafc0..0000000000 --- a/reference/mysqli/WARNING.txt +++ /dev/null @@ -1,10 +0,0 @@ -The current documentation for ext/mysqli is outdated. I made a lot of -changes (new properties and methods, renamed some functions etc). -I will fix the current documentation until end of January 2004. Please -don't make any changes in the current english documentation or start -translation until things are fixed. - -Thanks - -Georg Richter -georg@php.net diff --git a/reference/mysqli/constants.xml b/reference/mysqli/constants.xml index 74fcb58cd4..d67a378c93 100644 --- a/reference/mysqli/constants.xml +++ b/reference/mysqli/constants.xml @@ -17,7 +17,8 @@ MYSQLI_READ_DEFAULT_GROUP (integer) - + + Read options from the named group from `my.cnf' or the file specified with MYSQLI_READ_DEFAULT_FILE @@ -26,6 +27,7 @@ (integer) + Read options from the named option file instead of from my.cnf @@ -34,6 +36,7 @@ (integer) + Connect timeout in seconds @@ -42,6 +45,7 @@ (integer) + Enables command LOAD LOCAL INFILE @@ -50,6 +54,7 @@ (integer) + Command to execute when connecting to MySQL server. Will automatically be re-executed when reconnecting. @@ -58,6 +63,8 @@ (integer) + Use SSL (encrypted protocol). This option should not be set by application programs; + it is set internally in the MySQL client library @@ -66,6 +73,7 @@ (integer) + Use compression protocol @@ -74,6 +82,7 @@ (integer) + 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. @@ -82,6 +91,7 @@ (integer) + Allow spaces after function names. Makes all functions names reserved words. @@ -90,6 +100,7 @@ (integer) + Don't allow the db_name.tbl_name.col_name syntax. @@ -106,6 +117,7 @@ (integer) + For using buffered resultsets @@ -114,6 +126,7 @@ (integer) + For using unbuffered resultsets @@ -122,6 +135,7 @@ (integer) + Columns are returned into the array having the fieldname as the array index. @@ -130,6 +144,7 @@ (integer) + Columns are returned into the array having an enumerated index. @@ -138,6 +153,7 @@ (integer) + Columns are returned into the array having both a numerical index and the fieldname as the associative index. @@ -146,6 +162,7 @@ (integer) + Indicates that a field is defined as NOT NULL @@ -153,147 +170,153 @@ MYSQLI_PRI_KEY_FLAG (integer) - + + Field is part of a primary index + MYSQLI_UNIQUE_KEY_FLAG (integer) - + + Field is part of an unique index. + MYSQLI_MULTIPLE_KEY_FLAG (integer) - + + Field is part of an index. + MYSQLI_BLOB_FLAG (integer) - + Field is defined as BLOB MYSQLI_UNSIGNED_FLAG (integer) - + Field is defined as UNSIGNED MYSQLI_ZEROFILL_FLAG (integer) - + Field is defined as ZEROFILL MYSQLI_AUTO_INCREMENT_FLAG (integer) - + Field is defined as AUTO_INCREMENT MYSQLI_TIMESTAMP_FLAG (integer) - + Field is defined as TIMESTAMP MYSQLI_SET_FLAG (integer) - + Field is defined as SET MYSQLI_NUM_FLAG (integer) - + Field is defined as NUMERIC MYSQLI_PART_KEY_FLAG (integer) - + Field is part of an multi-index MYSQLI_GROUP_FLAG (integer) - + Field is part of GROUP BY MYSQLI_TYPE_DECIMAL (integer) - + Field is defined as DECIMAL MYSQLI_TYPE_TINY (integer) - + Field is defined as TINYINT MYSQLI_TYPE_SHORT (integer) - + Field is defined as INT MYSQLI_TYPE_LONG (integer) - + Field is defined as MEDIUMINT - MYSQLI_TYPE_FLOAD + MYSQLI_TYPE_FLOAT (integer) - + Field is defined as FLOAT MYSQLI_TYPE_DOUBLE (integer) - + Field is defined as double MYSQLI_TYPE_NULL (integer) - + Field is defined as DEFAULT NULL MYSQLI_TYPE_TIMESTAMP (integer) - + Field is defined as TIMESTAMP MYSQLI_TYPE_LONGLONG (integer) - + Field is defined as BIGINT @@ -307,196 +330,140 @@ MYSQLI_TYPE_DATE (integer) - + Field is defined as DATE MYSQLI_TYPE_TIME (integer) - + Field is defined as TIME MYSQLI_TYPE_DATETIME (integer) - + Field is defined as DATETIME MYSQLI_TYPE_YEAR (integer) - + Field is defined as YEAR MYSQLI_TYPE_NEWDATE (integer) - + Field is defined as DATE MYSQLI_TYPE_ENUM (integer) - + Field is defined as ENUM MYSQLI_TYPE_SET (integer) - + Field is defined as SET MYSQLI_TYPE_TINY_BLOB (integer) - + Field is defined as TINYBLOB MYSQLI_TYPE_MEDIUM_BLOB (integer) - + Field is defined as MEDIUMBLOB MYSQLI_TYPE_LONG_BLOB (integer) - + Field is defined as LONGBLOB MYSQLI_TYPE_BLOB (integer) - - - - - MYSQLI_TYPE_VAR_STRING - (integer) - - + Field is defined as BLOB MYSQLI_TYPE_STRING (integer) - + Field is defined as VARCHAR MYSQLI_TYPE_CHAR (integer) - - - - - MYSQLI_TYPE_INTERVAL - (integer) - - + Field is defined as CHAR MYSQLI_TYPE_GEOMETRY (integer) - + Field is defined as GEOMETRY MYSQLI_BIND_STRING (integer) - + Bind variable has type STRING MYSQLI_BIND_INT (integer) - + Bind variable has type INT MYSQLI_BIND_DOUBLE (integer) - + Bind variable has type DOUBLE MYSQLI_BIND_SEND_DATA (integer) - - - - - MYSQLI_RPL_MASTER - (integer) - - - - - - MYSQLI_RPL_SLAVE - (integer) - - - - - - MYSQLI_RPL_ADMIN - (integer) - - + Sending bind variable in chunks MYSQLI_NEED_DATA (integer) - + More data available for bind variable MYSQLI_NO_DATA (integer) - - - - - MYSQLI_PR_REPORT_STDERR - (integer) - - - - - - MYSQLI_PR_REPORT_PORT - (integer) - - - - - - MYSQLI_PR_REPORT_FILE - (integer) - - + No more data available for bind variable diff --git a/reference/mysqli/reference.xml b/reference/mysqli/reference.xml index e96f2fdeff..8186ded5b1 100644 --- a/reference/mysqli/reference.xml +++ b/reference/mysqli/reference.xml @@ -1,5 +1,5 @@ - + Improved MySQL Extension mysqli @@ -16,9 +16,7 @@ Documentation for MySQL can be found at &url.mysql.docs;. - - &warn.experimental; - + Parts of this documentation included from MySQL manual with permissions of MySQL AB.
@@ -29,7 +27,7 @@ - The mysqli extension is designed to work with the version 4.1 or above + The mysqli extension is designed to work with the version 4.1.2 or above of MySQL. For previous versions, please see the MySQL extension documentation. @@ -39,28 +37,280 @@ &reference.mysqli.configure; &reference.mysqli.ini; -
- &reftitle.resources; +
+ &reftitle.classes -