pdo_odbc.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.0 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_0.txt. |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Wez Furlong <wez@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifdef HAVE_CONFIG_H
  20. #include "config.h"
  21. #endif
  22. #include "php.h"
  23. #include "php_ini.h"
  24. #include "ext/standard/info.h"
  25. #include "pdo/php_pdo.h"
  26. #include "pdo/php_pdo_driver.h"
  27. #include "php_pdo_odbc.h"
  28. #include "php_pdo_odbc_int.h"
  29. /* {{{ pdo_odbc_functions[] */
  30. const zend_function_entry pdo_odbc_functions[] = {
  31. PHP_FE_END
  32. };
  33. /* }}} */
  34. /* {{{ pdo_odbc_deps[] */
  35. #if ZEND_MODULE_API_NO >= 20050922
  36. static const zend_module_dep pdo_odbc_deps[] = {
  37. ZEND_MOD_REQUIRED("pdo")
  38. ZEND_MOD_END
  39. };
  40. #endif
  41. /* }}} */
  42. /* {{{ pdo_odbc_module_entry */
  43. zend_module_entry pdo_odbc_module_entry = {
  44. #if ZEND_MODULE_API_NO >= 20050922
  45. STANDARD_MODULE_HEADER_EX, NULL,
  46. pdo_odbc_deps,
  47. #else
  48. STANDARD_MODULE_HEADER,
  49. #endif
  50. "PDO_ODBC",
  51. pdo_odbc_functions,
  52. PHP_MINIT(pdo_odbc),
  53. PHP_MSHUTDOWN(pdo_odbc),
  54. NULL,
  55. NULL,
  56. PHP_MINFO(pdo_odbc),
  57. "1.0.1",
  58. STANDARD_MODULE_PROPERTIES
  59. };
  60. /* }}} */
  61. #ifdef COMPILE_DL_PDO_ODBC
  62. ZEND_GET_MODULE(pdo_odbc)
  63. #endif
  64. #ifdef SQL_ATTR_CONNECTION_POOLING
  65. SQLUINTEGER pdo_odbc_pool_on = SQL_CP_OFF;
  66. SQLUINTEGER pdo_odbc_pool_mode = SQL_CP_ONE_PER_HENV;
  67. #endif
  68. #if defined(DB2CLI_VER) && !defined(PHP_WIN32)
  69. PHP_INI_BEGIN()
  70. PHP_INI_ENTRY("pdo_odbc.db2_instance_name", NULL, PHP_INI_SYSTEM, NULL)
  71. PHP_INI_END()
  72. #endif
  73. /* {{{ PHP_MINIT_FUNCTION */
  74. PHP_MINIT_FUNCTION(pdo_odbc)
  75. {
  76. #ifdef SQL_ATTR_CONNECTION_POOLING
  77. char *pooling_val = NULL;
  78. #endif
  79. if (FAILURE == php_pdo_register_driver(&pdo_odbc_driver)) {
  80. return FAILURE;
  81. }
  82. #if defined(DB2CLI_VER) && !defined(PHP_WIN32)
  83. REGISTER_INI_ENTRIES();
  84. {
  85. char *instance = INI_STR("pdo_odbc.db2_instance_name");
  86. if (instance) {
  87. char *env = malloc(sizeof("DB2INSTANCE=") + strlen(instance));
  88. if (!env) {
  89. return FAILURE;
  90. }
  91. strcpy(env, "DB2INSTANCE=");
  92. strcat(env, instance);
  93. putenv(env);
  94. /* after this point, we can't free env without breaking the environment */
  95. }
  96. }
  97. #endif
  98. #ifdef SQL_ATTR_CONNECTION_POOLING
  99. /* ugh, we don't really like .ini stuff in PDO, but since ODBC connection
  100. * pooling is process wide, we can't set it from within the scope of a
  101. * request without affecting others, which goes against our isolated request
  102. * policy. So, we use cfg_get_string here to check it this once.
  103. * */
  104. if (FAILURE == cfg_get_string("pdo_odbc.connection_pooling", &pooling_val) || pooling_val == NULL) {
  105. pooling_val = "strict";
  106. }
  107. if (strcasecmp(pooling_val, "strict") == 0 || strcmp(pooling_val, "1") == 0) {
  108. pdo_odbc_pool_on = SQL_CP_ONE_PER_HENV;
  109. pdo_odbc_pool_mode = SQL_CP_STRICT_MATCH;
  110. } else if (strcasecmp(pooling_val, "relaxed") == 0) {
  111. pdo_odbc_pool_on = SQL_CP_ONE_PER_HENV;
  112. pdo_odbc_pool_mode = SQL_CP_RELAXED_MATCH;
  113. } else if (*pooling_val == '\0' || strcasecmp(pooling_val, "off") == 0) {
  114. pdo_odbc_pool_on = SQL_CP_OFF;
  115. } else {
  116. php_error_docref(NULL TSRMLS_CC, E_ERROR, "Error in pdo_odbc.connection_pooling configuration. Value MUST be one of 'strict', 'relaxed' or 'off'");
  117. return FAILURE;
  118. }
  119. if (pdo_odbc_pool_on != SQL_CP_OFF) {
  120. SQLSetEnvAttr(SQL_NULL_HANDLE, SQL_ATTR_CONNECTION_POOLING, (void*)pdo_odbc_pool_on, 0);
  121. }
  122. #endif
  123. REGISTER_PDO_CLASS_CONST_LONG("ODBC_ATTR_USE_CURSOR_LIBRARY", PDO_ODBC_ATTR_USE_CURSOR_LIBRARY);
  124. REGISTER_PDO_CLASS_CONST_LONG("ODBC_ATTR_ASSUME_UTF8", PDO_ODBC_ATTR_ASSUME_UTF8);
  125. REGISTER_PDO_CLASS_CONST_LONG("ODBC_SQL_USE_IF_NEEDED", SQL_CUR_USE_IF_NEEDED);
  126. REGISTER_PDO_CLASS_CONST_LONG("ODBC_SQL_USE_DRIVER", SQL_CUR_USE_DRIVER);
  127. REGISTER_PDO_CLASS_CONST_LONG("ODBC_SQL_USE_ODBC", SQL_CUR_USE_ODBC);
  128. return SUCCESS;
  129. }
  130. /* }}} */
  131. /* {{{ PHP_MSHUTDOWN_FUNCTION
  132. */
  133. PHP_MSHUTDOWN_FUNCTION(pdo_odbc)
  134. {
  135. #if defined(DB2CLI_VER) && !defined(PHP_WIN32)
  136. UNREGISTER_INI_ENTRIES();
  137. #endif
  138. php_pdo_unregister_driver(&pdo_odbc_driver);
  139. return SUCCESS;
  140. }
  141. /* }}} */
  142. /* {{{ PHP_MINFO_FUNCTION
  143. */
  144. PHP_MINFO_FUNCTION(pdo_odbc)
  145. {
  146. php_info_print_table_start();
  147. php_info_print_table_header(2, "PDO Driver for ODBC (" PDO_ODBC_TYPE ")" , "enabled");
  148. #ifdef SQL_ATTR_CONNECTION_POOLING
  149. php_info_print_table_row(2, "ODBC Connection Pooling", pdo_odbc_pool_on == SQL_CP_OFF ?
  150. "Disabled" : (pdo_odbc_pool_mode == SQL_CP_STRICT_MATCH ? "Enabled, strict matching" : "Enabled, relaxed matching"));
  151. #else
  152. php_info_print_table_row(2, "ODBC Connection Pooling", "Not supported in this build");
  153. #endif
  154. php_info_print_table_end();
  155. #if defined(DB2CLI_VER) && !defined(PHP_WIN32)
  156. DISPLAY_INI_ENTRIES();
  157. #endif
  158. }
  159. /* }}} */
  160. /*
  161. * Local variables:
  162. * tab-width: 4
  163. * c-basic-offset: 4
  164. * End:
  165. * vim600: noet sw=4 ts=4 fdm=marker
  166. * vim<600: noet sw=4 ts=4
  167. */