xref: /php-src/ext/mysqlnd/mysqlnd_connection.h (revision d902b3a8)
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 
18 #ifndef MYSQLND_CONNECTION_H
19 #define MYSQLND_CONNECTION_H
20 
21 PHPAPI extern const char * const mysqlnd_out_of_sync;
22 PHPAPI extern const char * const mysqlnd_server_gone;
23 PHPAPI extern const char * const mysqlnd_out_of_memory;
24 
25 
26 void mysqlnd_upsert_status_init(MYSQLND_UPSERT_STATUS * const upsert_status);
27 
28 #define UPSERT_STATUS_RESET(status)							(status)->m->reset((status))
29 
30 #define UPSERT_STATUS_GET_SERVER_STATUS(status)				(status)->server_status
31 #define UPSERT_STATUS_SET_SERVER_STATUS(status, server_st)	(status)->server_status = (server_st)
32 
33 #define UPSERT_STATUS_GET_WARNINGS(status)					(status)->warning_count
34 #define UPSERT_STATUS_SET_WARNINGS(status, warnings)		(status)->warning_count = (warnings)
35 
36 #define UPSERT_STATUS_GET_AFFECTED_ROWS(status)				(status)->affected_rows
37 #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows)		(status)->affected_rows = (rows)
38 #define UPSERT_STATUS_SET_AFFECTED_ROWS_TO_ERROR(status)	(status)->m->set_affected_rows_to_error((status))
39 
40 #define UPSERT_STATUS_GET_LAST_INSERT_ID(status)			(status)->last_insert_id
41 #define UPSERT_STATUS_SET_LAST_INSERT_ID(status, id)		(status)->last_insert_id = (id)
42 
43 PHPAPI void mysqlnd_error_info_init(MYSQLND_ERROR_INFO * const info, const bool persistent);
44 PHPAPI void	mysqlnd_error_info_free_contents(MYSQLND_ERROR_INFO * const info);
45 
46 #define GET_CONNECTION_STATE(state_struct)		(state_struct)->m->get((state_struct))
47 #define SET_CONNECTION_STATE(state_struct, s)	(state_struct)->m->set((state_struct), (s))
48 
49 PHPAPI void mysqlnd_connection_state_init(struct st_mysqlnd_connection_state * const state);
50 
51 #endif /* MYSQLND_CONNECTION_H */
52