summaryrefslogtreecommitdiff
path: root/ext/mysqli/php_mysqli.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | cleanup the mod version macros, round 2Anatol Belski2015-03-231-0/+3
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* Sorry for the commit but compiler warnings are annoying and so are white ↵Ulf Wendel2010-10-041-1/+1
| | | | | | | | | | | | | | spaces at the end of a line, if one uses an editor which removes them on save and diff's get blown up by white space changes... Changes: - remove end of line white space - fix compiler warning "ext/mysqli/mysqli_priv.h:156:27: warning: no newline at end of file" - fix compiler warning "ext/mysqli/mysqli_fe.h:135:25: warning: no newline at end of file" - fix compiler warning "ext/mysqli/mysqli.c:896:11: warning: extra tokens at end of #ifdef directive"
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Move declarations from the public header file.Andrey Hristov2007-10-081-121/+0
|
* Import mysqlndAndrey Hristov2007-10-051-333/+10
| | | | | Patch ext/mysql and ext/mysqli to support mysqlnd
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-7/+7
|
* Fix stupid error, which happens only on Windows. And we thought this hasAndrey Hristov2007-09-121-1/+2
| | | | | | | been fixed. Now my_thread_end() should be called and there should be no warnings in the error logs of exiting thread, which hasn't deinited, and leaks.
* - Fix spprintf usageMarcus Boerger2007-02-241-1/+1
|
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-3/+3
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* removed unused macro parameterGeorg Richter2006-05-091-3/+3
|
* moved zend_class_entry variables to mysqli.cGeorg Richter2006-05-081-6/+6
|
* fixed bigint conversion on windows platformsGeorg Richter2006-04-051-0/+4
|
* Fix for bug #36802 (server crashes with invalid/not opened connections)Georg Richter2006-03-241-26/+33
| | | | | | | | | | | | Added status to mysqli_resource: MYSQLI_STATUS_UNKNOWN MYSQLI_STATUS_CLEARED (for future use) MYSQLI_STATUS_INITIALIZED (after mysqli_init and mysqli_stmt_init) MYSQLI_STATUS_VALID (for valid objects) removed valid flag changed MYSQLI_FETCH_RESOURCE added last parameter __check which specifies the status
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: nuke php3 legacyfoobar2005-12-061-7/+7
|
* fix compile failure on Windows - Microsoft hasn't heard of long long :)Andrey Hristov2005-12-011-0/+9
|
* MFH: use php_error_docref() instead of php_error() everywhereAntony Dovgal2005-10-181-3/+3
|
* fix #34810 (mysqli::init() and others use wrong $this pointer without checks)Antony Dovgal2005-10-101-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* add forgotten ifdefs, fix #33667 (mysqli doesn't compile)Antony Dovgal2005-07-121-0/+2
|
* changed version dependency for charset functionsGeorg Richter2005-07-121-0/+4
|
* removed charset structure. libmysql now provides a functionGeorg Richter2005-07-121-30/+6
| | | | | mysqli_get_character_set_info (Vers. 5.0.10)
* changed/fixed mysqli_warning classGeorg Richter2005-06-221-7/+11
| | | | | added prefetch support for cursors
* added new function mysqli_get_charsetGeorg Richter2005-06-031-0/+27
|
* enabled set_charset for MySQL Versions >= 5.0.6Georg Richter2005-05-211-1/+1
| | | | | added testcase for bug #33090
* mysql_set_charset now works version undependent for MySQL 4.1.13 and aboveGeorg Richter2005-05-131-6/+4
|
* - fixed compile error under windows. Functionality for changing theGeorg Richter2005-05-131-5/+2
| | | | | | | character set was moved to libmysql (4.1 bk tree - will be merged into 5.0 within the next days). - renamed mysql_set_character_set to mysqli_set_charset
* Added new function mysqli_set_character_set_nameGeorg Richter2005-05-081-0/+12
|
* MFB (fixing bug 31668)Andrey Hristov2005-04-271-4/+5
|
* Added standard emacs and vim modelinesZak Greant2005-01-161-0/+2
|
* Added new classes:Georg Richter2005-01-071-22/+38
| | | | | | | | | | | | | | | mysqli_driver mysqli_warning mysqli_exception mysqli_sql_exception Improved embedded server support changed testsuite to work also with embedded server Made statement and resultset classes extendable minor fixes
* added constructors for mysqli_stmt and mysqli_result classesGeorg Richter2004-12-261-0/+3
|
* fixed bug #29283Georg Richter2004-09-021-1/+1
|
* changed local_infile_handler:Georg Richter2004-08-251-3/+4
| | | | | | | | mysql client lib now uses php_local_infile functions by default, which allows to use php_fopen_wrapper: e.g. LOAD DATA LOCAL INFILE 'http://foo.com/bar.csv' ... mysql_set_local_infile_handler now only supports a callback function for read.
* added check in config.m4 for deprecated libraryGeorg Richter2004-07-071-8/+3
| | | | | | | | | | added support for new 4.1.3-beta functions mysqli_stmt_field_count mysqli_stmt_attr_set mysqli_stmt_attr_get removed support for deprecated/old api functions fixed bug in constructor_get
* removed conditional defines for load_data_infile_handlers on windowsGeorg Richter2004-06-061-2/+0
| | | | | (4.1.2 windows build is fixed now on mysql.com)
* Major changes for 4.1.2-alpha/4.1.3-beta:Georg Richter2004-06-051-15/+30
| | | | | | | | | | | | - added container for mysql structure - added load data infile callback functions (currently disabled under win) Bug fixes: - fixed property changes (4.1.1 -> 4.1.2) - fixed memleak in mysqli_connect - fixed bug #28100 - fixed bug #28205 - fixed bug #28430
* fixed stmt->stmt->query which was removed in libmysql 4.1.2Georg Richter2004-03-161-0/+2
| | | | | | added query buffer in internal stmt structure to copy string after prepare