summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_charset.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for gb18030/MySQL 5.7Andrey Hristov2014-06-181-4/+46
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Fix some errors in mysqlnd charset listNikita Popov2013-03-241-11/+9
| | | | | | | | | | | | I fixed the stuff that seemed obviously wrong, but there are some more differences with the SHOW COLLATIONS output: * The whole range of "utf16" collations missing * "filename" missing * "ucs2_general_mysql500_ci" and "utf8_general_mysql500_ci" missing I wasn't sure whether those omissions are intentional, so I didn't add them.
* add new charset, from MySQL 5.6Andrey Hristov2013-02-011-8/+11
|
* Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-01-061-1/+1
|\
| * bump yearXinchen Hui2013-01-061-1/+1
| |
* | Merge branch 'PHP-5.3' into PHP-5.4andrey2012-06-291-19/+56
|\ \ | |/
| * new charsetsandrey2012-06-291-19/+56
| |
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * - Fixed bad xor in signed types due to integer promotion.Gustavo André dos Santos Lopes2011-09-051-5/+5
| | | | | | | | | | - Replaced undefined signed overflow with char -> unsigned char conversion.
| * Sync r314808 to 5_3 branchXinchen Hui2011-08-231-2/+2
| | | | | | | | | | Eliminated compiler warnings "comparison is always false", "cast to pointer from integer of different siz" and tail zero warnings
| * Fix rangeAndrey Hristov2011-05-101-1/+1
| | | | | | | | | | (thanks again nihen)
| * Fix for bug 54674..typo in the check of SJISAndrey Hristov2011-05-091-5/+3
| |
| * - Year++Felipe Pena2011-01-011-1/+1
| |
| * new collationsAndrey Hristov2010-10-081-0/+2
| |
| * WS fixesAndrey Hristov2010-09-231-1/+1
| |
| * Added utf16 and utf32 support, as in MySQL 5.5, in mysqlnd.Andrey Hristov2010-08-161-220/+203
| | | | | | | | | | | | | | | | Fixed tests, so they don't try to use SET NAMES utf16|utf32, as character_set_client can't be set to those (the lexer can't read ucs2, utf16 and utf32). Added support for 4-byte utf8, as found in MySQL 5.5
| * - Fix copyrightsFelipe Pena2010-04-201-2/+2
| |
| * CS + WS changesAndrey Hristov2010-04-151-2/+2
| |
| * Update charset tableAndrey Hristov2009-11-241-3/+43
| |
| * Compressed protocol support + extensibility for mysqlndAndrey Hristov2009-11-201-6/+7
| |
| * Fix a typo, utf8 is 3 byte max, for us, for nowAndrey Hristov2009-05-261-1/+2
| | | | | | | | | | Add a another cset
| * MFH: Add charsets from MySQL 6.0 as a structure to be used laterAndrey Hristov2009-02-201-0/+159
| |
| * MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
| |
| * MFB: More Windows types cleanupAndrey Hristov2008-11-061-1/+1
| |
| * MFH:Andrey Hristov2008-11-061-30/+30
| | | | | | | | | | | | Get rid of many defines (which simplifies the code a lot), as well as uint->unsigned int
| * Small updates & a fix forAndrey Hristov2008-03-251-130/+130
| | | | | | | | | | Bug #43832 mysqi_get_charset() doesn't expose charset comment
| * Merge with internal versionAndrey Hristov2008-01-231-2/+2
| |
| * Remove unused fieldAndrey Hristov2008-01-031-130/+130
| |
| * MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
| |
| * Import mysqlndAndrey Hristov2007-10-051-0/+603
| | | | | Patch ext/mysql and ext/mysqli to support mysqlnd
* - Year++Felipe Pena2012-01-011-1/+1
|
* fixed maximum byte length of utf8mb4.Rui Hirokawa2011-10-181-2/+2
|
* - Fixed bad xor in signed types due to integer promotion.Gustavo André dos Santos Lopes2011-09-051-5/+5
| | | | | - Replaced undefined signed overflow with char -> unsigned char conversion.
* Eliminated compile warning "comparison is always false due to limited range ↵Xinchen Hui2011-08-241-2/+2
| | | | | | | | of data type" Fixed test failed due to mysql_pconnect throw warning Fixed test failed when host mysql server doesn't listen on 3306
* Fix rangeAndrey Hristov2011-05-101-1/+1
| | | | | (thanks again nihen)
* Fix for bug 54674..typo in the check of SJISAndrey Hristov2011-05-091-4/+2
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* extending the API interface - plugins can registerAndrey Hristov2010-12-281-1/+38
| | | | | | | | themselves with a structure and can be searched. Every plugin can have statistics and they are shown under the statistics of mysqlnd in MINFO.
* new collationsAndrey Hristov2010-10-081-0/+2
|
* WS fixesAndrey Hristov2010-09-231-1/+1
|
* Added utf16 and utf32 support, as in MySQL 5.5, in mysqlnd.Andrey Hristov2010-08-161-220/+203
| | | | | | | | Fixed tests, so they don't try to use SET NAMES utf16|utf32, as character_set_client can't be set to those (the lexer can't read ucs2, utf16 and utf32). Added support for 4-byte utf8, as found in MySQL 5.5
* - Fix copyrightsFelipe Pena2010-04-201-2/+2
|
* CS + WS changesAndrey Hristov2010-04-151-2/+2
|
* Update charset tableAndrey Hristov2009-11-241-3/+43
|
* Compressed protocol support + extensibility for mysqlndAndrey Hristov2009-11-201-6/+7
|
* Fix a typo, utf8 is 3 byte max, for us, for nowAndrey Hristov2009-05-261-1/+2
| | | | | Add a another cset
* Add the charsets available from 6.0 as a structure, to be used laterAndrey Hristov2009-02-201-0/+159
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* More type fixes for WindowsAndrey Hristov2008-11-061-1/+1
|