pdo_sqlite.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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: 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_sqlite.h"
  28. #include "php_pdo_sqlite_int.h"
  29. #include "zend_exceptions.h"
  30. #define PHP_PDO_SQLITE_MODULE_VERSION "1.0.1"
  31. /* {{{ pdo_sqlite_functions[] */
  32. const zend_function_entry pdo_sqlite_functions[] = {
  33. PHP_FE_END
  34. };
  35. /* }}} */
  36. /* {{{ pdo_sqlite_deps
  37. */
  38. #if ZEND_MODULE_API_NO >= 20050922
  39. static const zend_module_dep pdo_sqlite_deps[] = {
  40. ZEND_MOD_REQUIRED("pdo")
  41. ZEND_MOD_END
  42. };
  43. #endif
  44. /* }}} */
  45. /* {{{ pdo_sqlite_module_entry
  46. */
  47. zend_module_entry pdo_sqlite_module_entry = {
  48. #if ZEND_MODULE_API_NO >= 20050922
  49. STANDARD_MODULE_HEADER_EX, NULL,
  50. pdo_sqlite_deps,
  51. #else
  52. STANDARD_MODULE_HEADER,
  53. #endif
  54. "pdo_sqlite",
  55. pdo_sqlite_functions,
  56. PHP_MINIT(pdo_sqlite),
  57. PHP_MSHUTDOWN(pdo_sqlite),
  58. NULL,
  59. NULL,
  60. PHP_MINFO(pdo_sqlite),
  61. PHP_PDO_SQLITE_MODULE_VERSION,
  62. STANDARD_MODULE_PROPERTIES
  63. };
  64. /* }}} */
  65. #if defined(COMPILE_DL_PDO_SQLITE) || defined(COMPILE_DL_PDO_SQLITE_EXTERNAL)
  66. ZEND_GET_MODULE(pdo_sqlite)
  67. #endif
  68. /* {{{ PHP_MINIT_FUNCTION */
  69. PHP_MINIT_FUNCTION(pdo_sqlite)
  70. {
  71. return php_pdo_register_driver(&pdo_sqlite_driver);
  72. }
  73. /* }}} */
  74. /* {{{ PHP_MSHUTDOWN_FUNCTION */
  75. PHP_MSHUTDOWN_FUNCTION(pdo_sqlite)
  76. {
  77. php_pdo_unregister_driver(&pdo_sqlite_driver);
  78. return SUCCESS;
  79. }
  80. /* }}} */
  81. /* {{{ PHP_MINFO_FUNCTION
  82. */
  83. PHP_MINFO_FUNCTION(pdo_sqlite)
  84. {
  85. php_info_print_table_start();
  86. php_info_print_table_header(2, "PDO Driver for SQLite 3.x", "enabled");
  87. php_info_print_table_row(2, "SQLite Library", sqlite3_libversion());
  88. php_info_print_table_end();
  89. }
  90. /* }}} */
  91. /*
  92. * Local variables:
  93. * tab-width: 4
  94. * c-basic-offset: 4
  95. * End:
  96. * vim600: noet sw=4 ts=4 fdm=marker
  97. * vim<600: noet sw=4 ts=4
  98. */