summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_loaddata.c
Commit message (Collapse)AuthorAgeFilesLines
...
| | * MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
| | |
| | * MFH: No infinite loop in case the connection brokeJohannes Schlüter2008-11-281-1/+0
| | |
| | * MFH:Andrey Hristov2008-11-061-3/+3
| | | | | | | | | | | | | | | | | | Get rid of many defines (which simplifies the code a lot), as well as uint->unsigned int
| | * MFH: Fix #46285 (lastInsertId() returns "0" when a deferenced PDOStatement isJohannes Schlüter2008-10-271-2/+3
| | | | | | | | | | | | | | | executed)
| | * MFB: Update CVS from the development treeAndrey Hristov2008-04-161-2/+2
| | |
| | * Merge with internal versionAndrey Hristov2008-01-231-1/+1
| | |
| | * strncpy->strlcpyAndrey Hristov2008-01-081-1/+1
| | |
| | * MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
| | |
| | * Import mysqlndAndrey Hristov2007-10-051-0/+263
| | | | | | | | | | Patch ext/mysql and ext/mysqli to support mysqlnd
* | Merge branch 'PHP-5.4'Stanislav Malyshev2012-06-301-2/+2
|\ \ | |/ | | | | | | * PHP-5.4: Fixed the common misspelling of the word occurred (occured -> occurred)
| * Fixed the common misspelling of the word occurred (occured -> occurred)Marc Easen2012-06-301-2/+2
| |
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * Split struct MYSQLND in struct MYSQLND and struct MYSQLD_CONN_DATA.Andrey Hristov2011-10-311-7/+10
| | | | | | | | | | A step in the direction of keeping internal data private
| * Move from directly referencing an aggregated structure to using aAndrey Hristov2011-10-251-13/+13
| | | | | | | | | | | | pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
| * MYSQLND_NET refactored not to use any direct reference to MYSQLND (the ↵Andrey Hristov2011-10-101-5/+6
| | | | | | | | | | | | | | connection) QC will need an ifdef-layer to compile with this
| * Add mysqli_error_list() that returns an array with errors. Typically onlyAndrey Hristov2011-08-041-6/+8
| | | | | | | | | | | | | | | | one and just one for libmysql. mysqlnd can return generate more than one error during its work and with mysqli_error() only the last error is being reported. In the array returned by mysqli_error_list() / $mysqli->error_list, all errors will be found. The list is reset when the next command is executed
* | refactor MYSQLND_NET, split it two parts for easy resharingandrey2012-04-301-4/+4
| |
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | Split struct MYSQLND in struct MYSQLND and struct MYSQLD_CONN_DATA.Andrey Hristov2011-10-311-7/+10
| | | | | | | | | | A step in the direction of keeping internal data private
* | Move from directly referencing an aggregated structure to using aAndrey Hristov2011-10-251-13/+13
| | | | | | | | | | | | pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
* | MYSQLND_NET refactored not to use any direct reference to MYSQLND (the ↵Andrey Hristov2011-10-101-5/+6
| | | | | | | | | | | | | | connection) QC will need an ifdef-layer to compile with this
* | Add mysqli_error_list() that returns an array with errors. Typically onlyAndrey Hristov2011-08-041-6/+8
|/ | | | | | | | one and just one for libmysql. mysqlnd can return generate more than one error during its work and with mysqli_error() only the last error is being reported. In the array returned by mysqli_error_list() / $mysqli->error_list, all errors will be found. The list is reset when the next command is executed
* Remove unused macrosAndrey Hristov2011-03-161-19/+0
|
* compiler warnings fixedAndrey Hristov2011-03-161-5/+5
|
* Fix more warnings about size_tAndrey Hristov2011-02-011-2/+2
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* fix some uninitialized variables. also fix shadowing of global symbolsAndrey Hristov2010-10-071-2/+4
|
* WS fixesAndrey Hristov2010-09-231-1/+1
|
* Bail if allocation failsAndrey Hristov2010-05-311-1/+6
|
* - Fix copyrightsFelipe Pena2010-04-201-2/+2
|
* CS + WS changesAndrey Hristov2010-04-151-11/+9
|
* refactoring : move more network related functions toAndrey Hristov2009-12-171-4/+4
| | | | | | | mysqlnd_net.c . Now communication is split on two levels: - logical (functions send and receive) - physical (functions network_read and network_write)
* Move two functions which are used in the extension as methods ofAndrey Hristov2009-12-111-7/+1
| | | | | the connection. Two functions less in the global namespace.
* Compressed protocol support + extensibility for mysqlndAndrey Hristov2009-11-201-2/+2
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* No infinite loop in case the connection brokeJohannes Schlüter2008-11-281-1/+0
|
* Get rid of many defines (which simplifies the code a lot),Andrey Hristov2008-11-061-3/+3
| | | | | as well as uint->unsigned int
* Fix #46285 (lastInsertId() returns "0" when a deferenced PDOStatement isJohannes Schlüter2008-10-271-2/+3
| | | | | executed)
* Update ext/mysql, ext/mysqli and ext/mysqlnd from development treeAndrey Hristov2008-04-161-2/+2
|
* Merge with internal versionAndrey Hristov2008-01-231-1/+1
|
* strncpy->strlcpyAndrey Hristov2008-01-081-1/+1
|
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Update mysqlnd in HEADAndrey Hristov2007-10-021-105/+34
| | | | | Updated ext/mysql and ext/mysqli in HEAD
* - Moved mysqnd to it's own directory: It is sort of an extension itself.Jani Taskinen2007-07-251-0/+334
(Similar to what ext/libxml is..)