pdo_pgsql.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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.01 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_01.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: Edin Kadribasic <edink@emini.dk> |
  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_pgsql.h"
  28. #include "php_pdo_pgsql_int.h"
  29. #ifdef HAVE_PG_CONFIG_H
  30. #undef PACKAGE_BUGREPORT
  31. #undef PACKAGE_NAME
  32. #undef PACKAGE_STRING
  33. #undef PACKAGE_TARNAME
  34. #undef PACKAGE_VERSION
  35. #include <pg_config.h>
  36. #endif
  37. /* {{{ pdo_pgsql_functions[] */
  38. const zend_function_entry pdo_pgsql_functions[] = {
  39. {NULL, NULL, NULL}
  40. };
  41. /* }}} */
  42. /* {{{ pdo_sqlite_deps
  43. */
  44. #if ZEND_MODULE_API_NO >= 20050922
  45. static const zend_module_dep pdo_pgsql_deps[] = {
  46. ZEND_MOD_REQUIRED("pdo")
  47. ZEND_MOD_END
  48. };
  49. #endif
  50. /* }}} */
  51. /* {{{ pdo_pgsql_module_entry */
  52. zend_module_entry pdo_pgsql_module_entry = {
  53. #if ZEND_MODULE_API_NO >= 20050922
  54. STANDARD_MODULE_HEADER_EX, NULL,
  55. pdo_pgsql_deps,
  56. #else
  57. STANDARD_MODULE_HEADER,
  58. #endif
  59. "pdo_pgsql",
  60. pdo_pgsql_functions,
  61. PHP_MINIT(pdo_pgsql),
  62. PHP_MSHUTDOWN(pdo_pgsql),
  63. NULL,
  64. NULL,
  65. PHP_MINFO(pdo_pgsql),
  66. "1.0.2",
  67. STANDARD_MODULE_PROPERTIES
  68. };
  69. /* }}} */
  70. #ifdef COMPILE_DL_PDO_PGSQL
  71. ZEND_GET_MODULE(pdo_pgsql)
  72. #endif
  73. /* true global environment */
  74. /* {{{ PHP_MINIT_FUNCTION
  75. */
  76. PHP_MINIT_FUNCTION(pdo_pgsql)
  77. {
  78. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT", PDO_PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT);
  79. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_ATTR_DISABLE_PREPARES", PDO_PGSQL_ATTR_DISABLE_PREPARES);
  80. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_TRANSACTION_IDLE", (long)PGSQL_TRANSACTION_IDLE);
  81. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_TRANSACTION_ACTIVE", (long)PGSQL_TRANSACTION_ACTIVE);
  82. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_TRANSACTION_INTRANS", (long)PGSQL_TRANSACTION_INTRANS);
  83. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_TRANSACTION_INERROR", (long)PGSQL_TRANSACTION_INERROR);
  84. REGISTER_PDO_CLASS_CONST_LONG("PGSQL_TRANSACTION_UNKNOWN", (long)PGSQL_TRANSACTION_UNKNOWN);
  85. php_pdo_register_driver(&pdo_pgsql_driver);
  86. return SUCCESS;
  87. }
  88. /* }}} */
  89. /* {{{ PHP_MSHUTDOWN_FUNCTION
  90. */
  91. PHP_MSHUTDOWN_FUNCTION(pdo_pgsql)
  92. {
  93. php_pdo_unregister_driver(&pdo_pgsql_driver);
  94. return SUCCESS;
  95. }
  96. /* }}} */
  97. /* {{{ PHP_MINFO_FUNCTION
  98. */
  99. PHP_MINFO_FUNCTION(pdo_pgsql)
  100. {
  101. php_info_print_table_start();
  102. php_info_print_table_header(2, "PDO Driver for PostgreSQL", "enabled");
  103. #ifdef HAVE_PG_CONFIG_H
  104. php_info_print_table_row(2, "PostgreSQL(libpq) Version", PG_VERSION);
  105. #endif
  106. php_info_print_table_row(2, "Module version", pdo_pgsql_module_entry.version);
  107. php_info_print_table_row(2, "Revision", " $Id$ ");
  108. php_info_print_table_end();
  109. }
  110. /* }}} */
  111. /*
  112. * Local variables:
  113. * tab-width: 4
  114. * c-basic-offset: 4
  115. * End:
  116. * vim600: noet sw=4 ts=4 fdm=marker
  117. * vim<600: noet sw=4 ts=4
  118. */