You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
3.3 KiB

25 years ago
24 years ago
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 4 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2003 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | dbx module version 1.0 |
  8. +----------------------------------------------------------------------+
  9. | Copyright (c) 2001-2003 Guidance Rotterdam BV |
  10. +----------------------------------------------------------------------+
  11. | This source file is subject to version 3.0 of the PHP license, |
  12. | that is bundled with this package in the file LICENSE, and is |
  13. | available through the world-wide-web at the following url: |
  14. | http://www.php.net/license/3_0.txt. |
  15. | If you did not receive a copy of the PHP license and are unable to |
  16. | obtain it through the world-wide-web, please send a note to |
  17. | license@php.net so we can mail you a copy immediately. |
  18. +----------------------------------------------------------------------+
  19. | Author : Marc Boeren <marc@guidance.nl> |
  20. +----------------------------------------------------------------------+
  21. */
  22. /* $Id$ */
  23. #ifndef ZEND_DBX_MYSQL_H
  24. #define ZEND_DBX_MYSQL_H
  25. #ifndef INIT_FUNC_ARGS
  26. #include "zend_modules.h"
  27. #endif
  28. #include "php.h"
  29. int dbx_mysql_connect(zval **rv, zval **host, zval **db, zval **username, zval **password, INTERNAL_FUNCTION_PARAMETERS);
  30. /* returns connection handle as resource on success or 0 as long on failure */
  31. int dbx_mysql_pconnect(zval **rv, zval **host, zval **db, zval **username, zval **password, INTERNAL_FUNCTION_PARAMETERS);
  32. /* returns persistent connection handle as resource on success or 0 as long on failure */
  33. int dbx_mysql_close(zval **rv, zval **dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
  34. /* returns 1 as long on success or 0 as long on failure */
  35. int dbx_mysql_query(zval **rv, zval **dbx_handle, zval **db_name, zval **sql_statement, INTERNAL_FUNCTION_PARAMETERS);
  36. /* returns 1 as long or a result identifier as resource on success or 0 as long on failure */
  37. int dbx_mysql_getcolumncount(zval **rv, zval **result_handle, INTERNAL_FUNCTION_PARAMETERS);
  38. /* returns column-count as long on success or 0 as long on failure */
  39. int dbx_mysql_getcolumnname(zval **rv, zval **result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
  40. /* returns column-name as string on success or 0 as long on failure */
  41. int dbx_mysql_getcolumntype(zval **rv, zval **result_handle, long column_index, INTERNAL_FUNCTION_PARAMETERS);
  42. /* returns column-type as string on success or 0 as long on failure */
  43. int dbx_mysql_getrow(zval **rv, zval **result_handle, long row_number, INTERNAL_FUNCTION_PARAMETERS);
  44. /* returns array[0..columncount-1] as strings on success or 0 as long on failure */
  45. int dbx_mysql_error(zval **rv, zval **dbx_handle, INTERNAL_FUNCTION_PARAMETERS);
  46. /* returns string */
  47. int dbx_mysql_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION_PARAMETERS);
  48. /* returns escaped string */
  49. #endif /* ZEND_DBX_MYSQL_H */
  50. /*
  51. * Local variables:
  52. * tab-width: 4
  53. * c-basic-offset: 4
  54. * End:
  55. */