summaryrefslogtreecommitdiff
path: root/ext/interbase/ibase_query.c
Commit message (Collapse)AuthorAgeFilesLines
* Move ext/interbase to pecl/database/interbaseKalle Sommer Nielsen2019-05-011-2072/+0
| | | | https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase
* Remove HAVE_STRFTIMEPeter Kokot2019-03-141-15/+0
| | | | | | | | | | Function strftime is part of the C89 standard [1] and current systems don't need to check for its presence anymore. Additionally, checks for strftime function in tests have been removed since the PHP strftime function is now always available. 1: https://port70.net/~nsz/c/c89/c89-draft.html
* Replace PHP_TM_GMTOFF with AC_CHECK_MEMBERSPeter Kokot2019-03-041-1/+1
| | | | | | | | | | | | | | | | | Changes: - PHP_TM_GMTOFF removed - HAVE_TM_GMTOFF replaced with HAVE_STRUCT_TM_TM_GMTOFF - HAVE_TM_ZONE replaced with HAVE_STRUCT_TM_TM_ZONE - HAVE_TZNAME removed The PHP_TM_GMTOFF macro can be replaced with Autoconf's AC_CHECK_MEMBERS that defines the HAVE_STRUCT_TM_TM_GMTOFF symbol instead of the HAVE_TM_ZONE. The HAVE_TZNAME symbol is not used in current code. The obsolete HAVE_TM_ZONE symbol has been replaced with more proper HAVE_STRUCT_TM_TM_ZONE. These are defined by the AC_STRUCT_TIMEZONE macro.
* Remove local variablesPeter Kokot2019-02-031-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Remove yearly range from copyright noticeZeev Suraski2019-01-301-1/+1
|
* Use zval_ptr_dtor_nogc() instead of zval_dtor() inplaces where ↵Dmitry Stogov2018-07-051-1/+1
| | | | circular-references are not possible
* year++Xinchen Hui2018-01-021-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Fix CRLF line-endings in testsNikita Popov2016-11-201-1/+1
| | | | Also fix a single instance of CRLF in ibase_query.c.
* fix borked interbase patchAnatol Belski2016-08-111-1/+1
|
* Remove sql.safe_modeKalle Sommer Nielsen2016-08-111-4/+0
| | | | | | | | | | This is one of the last old and odd deprecated settings we still have in PHP, it was never fully implemented in all the database extensions and should probably have been gone back in 5.4, along with safe_mode. Although if my memory strikes me right, mysql was also supporting it back then, but not mysqli. So far only interbase was supporting this feature, and the removal of it causes two effects for interbase: - CREATE DATABASE is now allowed no matter - The default database set by php.ini (ibase.default_db) is no longer forced http://php.net/ini.core#ini.sql.safe-mode
* Fixed macro nameXinchen Hui2016-01-141-1/+1
|
* fix out formatAnatol Belski2016-01-111-1/+1
|
* further datatype and range check fixes for ibaseAnatol Belski2016-01-111-18/+18
|
* fix typo for #ifdefAnatol Belski2016-01-111-1/+1
|
* Fix various bugs in interbaseXinchen Hui2016-01-111-42/+43
| | | | Also read: https://marc.info/?l=php-internals&m=145077389117375&w=2
* 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
| |
* | Fix/improve zpp usageNikita Popov2015-10-021-6/+8
| | | | | | | | | | | | The ext/interbase changes are done blindly, fingers crossed. Some of these are bug fixes, some make zpp usage more idiomatic.
* | Cleanup (avoid reallocations)Dmitry Stogov2015-07-021-6/+2
| |
* | ZTS cleanupReeze Xia2015-03-081-10/+9
| |
* | Apply PHP7 firebird fixes after API Cleanup from ↵Popa Adrian Marius2015-02-131-33/+33
| | | | | | | | https://github.com/Jan-E/php-src/commit/8c920a22ac65da485eaf3d2fd27baf2b0406116e
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-86/+86
| |
* | second shot on removing TSRMLS_*Anatol Belski2014-12-141-2/+2
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-86/+86
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | first show to make 's' work with size_tAnatol Belski2014-08-271-1/+1
| |
* | master renames phase 7PRE_AST_MERGEAnatol Belski2014-08-251-3/+3
| |
* | master renames phase 1Anatol Belski2014-08-251-24/+24
| |
* | basic macro replacements, all at onceAnatol Belski2014-08-191-27/+27
| |
* | ext/interbase support (incomplete)Dmitry Stogov2014-07-291-88/+90
| |
* | Merge mainstream 'master' branch into refactoringDmitry Stogov2014-04-261-2/+0
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During merge I had to revert: Nikita's patch for php_splice() (it probably needs to be applyed again) Bob Weinand's patches related to constant expression handling (we need to review them carefully) I also reverted all our attempts to support sapi/phpdbg (we didn't test it anyway) Conflicts: Zend/zend.h Zend/zend_API.c Zend/zend_ast.c Zend/zend_compile.c Zend/zend_compile.h Zend/zend_constants.c Zend/zend_exceptions.c Zend/zend_execute.c Zend/zend_execute.h Zend/zend_execute_API.c Zend/zend_hash.c Zend/zend_highlight.c Zend/zend_language_parser.y Zend/zend_language_scanner.c Zend/zend_language_scanner_defs.h Zend/zend_variables.c Zend/zend_vm_def.h Zend/zend_vm_execute.h ext/date/php_date.c ext/dom/documenttype.c ext/hash/hash.c ext/iconv/iconv.c ext/mbstring/tests/zend_multibyte-10.phpt ext/mbstring/tests/zend_multibyte-11.phpt ext/mbstring/tests/zend_multibyte-12.phpt ext/mysql/php_mysql.c ext/mysqli/mysqli.c ext/mysqlnd/mysqlnd_reverse_api.c ext/mysqlnd/php_mysqlnd.c ext/opcache/ZendAccelerator.c ext/opcache/zend_accelerator_util_funcs.c ext/opcache/zend_persist.c ext/opcache/zend_persist_calc.c ext/pcre/php_pcre.c ext/pdo/pdo_dbh.c ext/pdo/pdo_stmt.c ext/pdo_pgsql/pgsql_driver.c ext/pgsql/pgsql.c ext/reflection/php_reflection.c ext/session/session.c ext/spl/spl_array.c ext/spl/spl_observer.c ext/standard/array.c ext/standard/basic_functions.c ext/standard/html.c ext/standard/mail.c ext/standard/php_array.h ext/standard/proc_open.c ext/standard/streamsfuncs.c ext/standard/user_filters.c ext/standard/var_unserializer.c ext/standard/var_unserializer.re main/php_variables.c sapi/phpdbg/phpdbg.c sapi/phpdbg/phpdbg_bp.c sapi/phpdbg/phpdbg_frame.c sapi/phpdbg/phpdbg_help.c sapi/phpdbg/phpdbg_list.c sapi/phpdbg/phpdbg_print.c sapi/phpdbg/phpdbg_prompt.c
| * Cleanup $ is not needed for gitPopa Adrian Marius2014-04-101-2/+0
| |
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
| * Happy New YearXinchen Hui2013-01-011-1/+1
| |
| * - Year++Felipe Pena2012-01-011-1/+1
| |
| * - remove magic quotes support, functions are kept (see the NEWS entry for ↵Pierre Joye2011-07-221-6/+1
| | | | | | | | the details) for BC reasons but do not allow to set enable MQ
| * Fix for bug http://bugs.php.net/54426Popa Adrian Marius2011-07-191-7/+0
| | | | | | | | | | | | Checks for NULL are wrong as the values can be provided by the triggers
* | Cleanup (1-st round)Dmitry Stogov2014-04-151-12/+12
| |
* | Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Happy New YearXinchen Hui2013-01-011-1/+1
| |
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | - remove magic quotes support, functions are kept (see the NEWS entry for ↵Pierre Joye2011-07-221-6/+1
| | | | | | | | the details) for BC reasons but do not allow to set enable MQ
* | Fix for bug http://bugs.php.net/54426Popa Adrian Marius2011-07-191-7/+0
|/ | | | | | Checks for NULL are wrong as the values can be provided by the triggers
* - Year++Felipe Pena2011-01-011-1/+1
|
* - use TSRMLS_*C instead of TSRMLS_FETCH in zend_list_insertPierre Joye2010-09-161-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Fixed bug #48189 (ibase_execute error in return param)Kalle Sommer Nielsen2009-07-251-2/+1
|