mysqlnd_connection.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Copyright (c) The PHP Group |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | https://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Andrey Hristov <andrey@php.net> |
  14. | Ulf Wendel <uw@php.net> |
  15. +----------------------------------------------------------------------+
  16. */
  17. #ifndef MYSQLND_CONNECTION_H
  18. #define MYSQLND_CONNECTION_H
  19. PHPAPI extern const char * const mysqlnd_out_of_sync;
  20. PHPAPI extern const char * const mysqlnd_server_gone;
  21. PHPAPI extern const char * const mysqlnd_out_of_memory;
  22. void mysqlnd_upsert_status_init(MYSQLND_UPSERT_STATUS * const upsert_status);
  23. #define UPSERT_STATUS_RESET(status) (status)->m->reset((status))
  24. #define UPSERT_STATUS_GET_SERVER_STATUS(status) (status)->server_status
  25. #define UPSERT_STATUS_SET_SERVER_STATUS(status, server_st) (status)->server_status = (server_st)
  26. #define UPSERT_STATUS_GET_WARNINGS(status) (status)->warning_count
  27. #define UPSERT_STATUS_SET_WARNINGS(status, warnings) (status)->warning_count = (warnings)
  28. #define UPSERT_STATUS_GET_AFFECTED_ROWS(status) (status)->affected_rows
  29. #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows) (status)->affected_rows = (rows)
  30. #define UPSERT_STATUS_SET_AFFECTED_ROWS_TO_ERROR(status) (status)->m->set_affected_rows_to_error((status))
  31. #define UPSERT_STATUS_GET_LAST_INSERT_ID(status) (status)->last_insert_id
  32. #define UPSERT_STATUS_SET_LAST_INSERT_ID(status, id) (status)->last_insert_id = (id)
  33. PHPAPI void mysqlnd_error_info_init(MYSQLND_ERROR_INFO * const info, const bool persistent);
  34. PHPAPI void mysqlnd_error_info_free_contents(MYSQLND_ERROR_INFO * const info);
  35. #define GET_CONNECTION_STATE(state_struct) (state_struct)->m->get((state_struct))
  36. #define SET_CONNECTION_STATE(state_struct, s) (state_struct)->m->set((state_struct), (s))
  37. PHPAPI void mysqlnd_connection_state_init(struct st_mysqlnd_connection_state * const state);
  38. #endif /* MYSQLND_CONNECTION_H */