summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd.c
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Sync with bzrAndrey Hristov2008-07-151-1/+0
| | |
| | * Fix remaining valgrind problems with pconn and zval cacheAndrey Hristov2008-06-241-0/+1
| | | | | | | | | | | | | | | HEAD merge will follow tomorrow.
| | * Fix double-free, introduced latelyAndrey Hristov2008-06-241-11/+7
| | |
| | * Fix possible bug with persistent connections and mysqlndAndrey Hristov2008-06-241-4/+16
| | |
| | * Update mysqlndAndrey Hristov2008-05-071-2/+2
| | |
| | * Update ext/mysql's and ext/mysqli's testsAndrey Hristov2008-04-241-7/+10
| | | | | | | | | | | | | | | | | | Add mysqli_stmt_more_result()/mysqli_stmt_next_result(), but only in mysqlnd builds as libmysql doesn't support this feature.
| | * MFB: Update CVS from the development treeAndrey Hristov2008-04-161-11/+4
| | |
| | * - Don't modify the variables which are passed for parameter binding.Andrey Hristov2008-03-201-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to clone them, if there will be a transformation (convert_to_xxx) which will change the origin (bug#44390 bind_param / bind_result and Object member variables) - Make mysqlnd more compatible to libmysql, in this case if the execute of a statement fails set the state of the statement back to PREPARED - A test case to check the case of a failing statement.
| | * Fixed a bunch of bugs reported inAndrey Hristov2008-03-181-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Bug #44352 mysqli_connect_error() false negative for host errors From now on the mysqli object doesn't have that magic properties, like error, which were readable but not visible through isset(), property_exists() and var_dump(). All other ext/mysqli classes were fixed too. Now it will be easier to debug mysqli based applications.
| | * Update mysqlnd - fix bg_storeAndrey Hristov2008-02-141-2/+5
| | |
| | * Simplify unique string generation and plug a leak.Andrey Hristov2008-02-041-11/+16
| | |
| | * Fix the build, add a missing fileAndrey Hristov2008-01-291-58/+1
| | |
| | * Moved initialization code into a function.Andrey Hristov2008-01-291-9/+2
| | |
| | * Moving extension specific code to php_mysqlnd.c as the old rule is.Andrey Hristov2008-01-281-221/+0
| | |
| | * some config.w32 fixesAndrey Hristov2008-01-281-145/+6
| | | | | | | | | | | | | | | | | | moved mysqlnd's block allocator to a separate file and also now it's part of the connection, no MT problems.
| | * More optimizations - less MM callsAndrey Hristov2008-01-281-21/+347
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clearly separated fetching (physical reading) from decoding phases (data interpretation). Threaded fetching added but disabled as needs more work for Windows. For Linux needs some touches to add pthreads if this is enabled, probably with a compile-time switch. The code reorganisation makes it easy to add also async API, similar to cURL's one.
| | * Merge with internal versionAndrey Hristov2008-01-231-13/+13
| | |
| | * strncpy->strlcpyAndrey Hristov2008-01-081-2/+2
| | |
| | * - Fix problems with double definitionsAndrey Hristov2008-01-021-4/+4
| | | | | | | | | | | | | | | | | | | | | - Clean up a bit a type mess - 4 types less. No need to have aliases for the same thing (unification is the name). - New macro for Johannes mysqlnd_stmt_ro_result_metadata
| | * MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
| | |
| | * Fix segfault in debug buildAndrey Hristov2007-11-081-4/+4
| | |
| | * Fix build failure on Windows. Seems "free" can't be used even as method name ↵Andrey Hristov2007-10-231-1/+1
| | | | | | | | | | | | of a structure. The MS compiler (the preprocessor most probably) changes it to _free_dbg
| | * Import mysqlndAndrey Hristov2007-10-051-0/+2078
| | | | | | | | | | Patch ext/mysql and ext/mysqli to support mysqlnd
* | constifyAndrey Hristov2012-10-121-1/+1
| |
* | if ssl has been switched on transmit clear-text passwordAndrey Hristov2012-10-031-0/+3
| |
* | fix login failure with empty password. This is 5.5 specific - new codeAndrey Hristov2012-09-281-2/+2
| |
* | change public key setting to PERDIR and finish code that allowsandrey2012-09-251-0/+1
| | | | | | | | to set the key file programatically per mysqli_options()
* | remove old unicode code, that is was compiled out by using a macroandrey2012-09-251-16/+0
| |
* | Add SHA256 authentication support - password hashing to mysqlndandrey2012-09-251-5/+6
| | | | | | | | Automatic switchover to SSL with plain-text password is not part of this
* | plug a leak when the server ask the client for a auth protocol, thatandrey2012-08-221-8/+9
| | | | | | | | | | the client doesn't understand. This is 5.5 specific bug, as a result of a refactoring in 5.5
* | fix valgrind warningandrey2012-07-091-1/+1
| |
* | mergeandrey2012-06-291-0/+7
| |
* | close the underlying stream as early as possible and so notify theandrey2012-06-011-7/+6
| | | | | | | | NET layer
* | close the stream whenever possible, no need to keep it open altough theandrey2012-06-011-0/+5
| | | | | | | | connection is marked as unusable
* | more refactoring stuff. Reduced code duplication in the authenticationandrey2012-05-311-216/+170
| | | | | | | | code
* | small refactoring - factour out code from connection establishment.andrey2012-05-301-101/+153
| | | | | | | | | | Add a define for the default authentication protocol - get away from the hardcoded magic value
* | refactor MYSQLND_NET, split it two parts for easy resharingandrey2012-04-301-23/+26
|/
* Fix foldingJohannes Schlüter2012-04-221-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* Add a middleman which can intercept the calls and can reroute themAndrey Hristov2011-11-021-3/+28
|
* - shift a bit of code aroundAndrey Hristov2011-11-021-13/+13
| | | | | - when cloning use the methods of the original object
* fix trace log messagesAndrey Hristov2011-11-021-2/+2
|
* Now really split the method tables and have differentAndrey Hristov2011-10-311-308/+324
| | | | | | | methods for the handle and the data object. Add auxiliary functions to work with the new methods. Add possibility to clone a connection object - shadow copy.
* Split struct MYSQLND in struct MYSQLND and struct MYSQLD_CONN_DATA.Andrey Hristov2011-10-311-91/+116
| | | | | A step in the direction of keeping internal data private
* Move from directly referencing an aggregated structure to using aAndrey Hristov2011-10-251-121/+132
| | | | | | pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage
* Add hooks for __call like functionality and also allow toAndrey Hristov2011-10-251-239/+428
| | | | | | handle calls that spread over two internal functions. Let's call it a local TX.
* move plugin specific stuff to one file. create object factoryAndrey Hristov2011-10-241-45/+5
| | | | | for similar objects
* shift code around to two new files - mysqlnd_driver.c Andrey Hristov2011-10-211-113/+18
| | | | | | and mysqlnd_ext_plugin.c (mysqlnd extension plugin)
* api_ext to reverse_apiAndrey Hristov2011-10-191-38/+3
|
* MYSQLND_NET refactored not to use any direct reference to MYSQLND (the ↵Andrey Hristov2011-10-101-12/+14
| | | | | | | connection) QC will need an ifdef-layer to compile with this