php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
mysqlnd_connection.h
Go to the documentation of this file.
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
21PHPAPI extern const char * const mysqlnd_out_of_sync;
22PHPAPI extern const char * const mysqlnd_server_gone;
23PHPAPI extern const char * const mysqlnd_out_of_memory;
24
25
26void 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
43PHPAPI void mysqlnd_error_info_init(MYSQLND_ERROR_INFO * const info, const bool persistent);
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
50
51#endif /* MYSQLND_CONNECTION_H */
ffi persistent
Definition ffi.c:3633
PHPAPI const char *const mysqlnd_out_of_memory
PHPAPI const char *const mysqlnd_server_gone
PHPAPI const char *const mysqlnd_out_of_sync
PHPAPI void mysqlnd_connection_state_init(struct st_mysqlnd_connection_state *const state)
PHPAPI void mysqlnd_error_info_init(MYSQLND_ERROR_INFO *const info, const bool persistent)
void mysqlnd_upsert_status_init(MYSQLND_UPSERT_STATUS *const upsert_status)
PHPAPI void mysqlnd_error_info_free_contents(MYSQLND_ERROR_INFO *const info)
struct st_mysqlnd_upsert_status MYSQLND_UPSERT_STATUS
struct st_mysqlnd_error_info MYSQLND_ERROR_INFO
#define PHPAPI
Definition php.h:71