php_pdo_int.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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. | Marcus Boerger <helly@php.net> |
  17. | Sterling Hughes <sterling@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* Stuff private to the PDO extension and not for consumption by PDO drivers
  21. * */
  22. #include "php_pdo_error.h"
  23. extern HashTable pdo_driver_hash;
  24. extern zend_class_entry *pdo_exception_ce;
  25. PDO_API zend_class_entry *php_pdo_get_exception_base(int root);
  26. int php_pdo_list_entry(void);
  27. void pdo_dbh_init(void);
  28. void pdo_stmt_init(void);
  29. extern zend_object *pdo_dbh_new(zend_class_entry *ce);
  30. extern const zend_function_entry pdo_dbh_functions[];
  31. extern zend_class_entry *pdo_dbh_ce;
  32. extern ZEND_RSRC_DTOR_FUNC(php_pdo_pdbh_dtor);
  33. extern zend_object *pdo_dbstmt_new(zend_class_entry *ce);
  34. extern const zend_function_entry pdo_dbstmt_functions[];
  35. extern zend_class_entry *pdo_dbstmt_ce;
  36. void pdo_dbstmt_free_storage(zend_object *std);
  37. zend_object_iterator *pdo_stmt_iter_get(zend_class_entry *ce, zval *object, int by_ref);
  38. extern zend_object_handlers pdo_dbstmt_object_handlers;
  39. int pdo_stmt_describe_columns(pdo_stmt_t *stmt);
  40. int pdo_stmt_setup_fetch_mode(INTERNAL_FUNCTION_PARAMETERS, pdo_stmt_t *stmt, int skip_first_arg);
  41. extern zend_object *pdo_row_new(zend_class_entry *ce);
  42. extern const zend_function_entry pdo_row_functions[];
  43. extern zend_class_entry *pdo_row_ce;
  44. void pdo_row_free_storage(zend_object *std);
  45. extern const zend_object_handlers pdo_row_object_handlers;
  46. zend_object_iterator *php_pdo_dbstmt_iter_get(zend_class_entry *ce, zval *object);
  47. extern pdo_driver_t *pdo_find_driver(const char *name, int namelen);
  48. int pdo_sqlstate_init_error_table(void);
  49. void pdo_sqlstate_fini_error_table(void);
  50. const char *pdo_sqlstate_state_to_description(char *state);
  51. int pdo_hash_methods(pdo_dbh_object_t *dbh, int kind);
  52. /*
  53. * Local variables:
  54. * tab-width: 4
  55. * c-basic-offset: 4
  56. * End:
  57. * vim600: noet sw=4 ts=4 fdm=marker
  58. * vim<600: noet sw=4 ts=4
  59. */