php-internal-docs 8.4.8
Unofficial docs for php/php-src
Loading...
Searching...
No Matches
mysqli_mysqlnd.h File Reference

Go to the source code of this file.

Macros

#define MYSQLI_CLOSE_EXPLICIT   MYSQLND_CLOSE_EXPLICIT
 
#define MYSQLI_CLOSE_IMPLICIT   MYSQLND_CLOSE_IMPLICIT
 
#define MYSQLI_CLOSE_DISCONNECTED   MYSQLND_CLOSE_DISCONNECTED
 
#define mysqli_result_is_unbuffered(r)
 
#define mysqli_result_is_unbuffered_and_not_everything_is_fetched(r)
 
#define mysqli_server_status(c)
 
#define mysqli_stmt_get_id(s)
 
#define mysqli_stmt_warning_count(s)
 
#define mysqli_stmt_server_status(s)
 
#define mysqli_stmt_get_connection(s)
 
#define mysqli_close(c, how)
 
#define mysqli_stmt_close(c, implicit)
 
#define mysqli_free_result(r, implicit)
 
#define mysqli_async_query(c, q, l)
 
#define mysqli_change_user_silent(c, u, p, d, p_len)
 

Macro Definition Documentation

◆ mysqli_async_query

#define mysqli_async_query ( c,
q,
l )
Value:
mysqlnd_async_query((c), (q), (l))
#define mysqlnd_async_query(conn, query_str, query_len)
Definition mysqlnd.h:112

Definition at line 41 of file mysqli_mysqlnd.h.

◆ mysqli_change_user_silent

#define mysqli_change_user_silent ( c,
u,
p,
d,
p_len )
Value:
mysqlnd_change_user_ex((c), (u), (p), (d), true, (size_t)(p_len))
uint32_t u
Definition cdf.c:78
#define mysqlnd_change_user_ex(conn, user, passwd, db, silent, passwd_len)
Definition mysqlnd.h:98
p
Definition session.c:1105

Definition at line 42 of file mysqli_mysqlnd.h.

◆ mysqli_close

#define mysqli_close ( c,
how )
Value:
mysqlnd_close((c), (how))
#define mysqlnd_close(conn, is_forced)
Definition mysqlnd.h:110

Definition at line 38 of file mysqli_mysqlnd.h.

◆ MYSQLI_CLOSE_DISCONNECTED

#define MYSQLI_CLOSE_DISCONNECTED   MYSQLND_CLOSE_DISCONNECTED

Definition at line 29 of file mysqli_mysqlnd.h.

◆ MYSQLI_CLOSE_EXPLICIT

#define MYSQLI_CLOSE_EXPLICIT   MYSQLND_CLOSE_EXPLICIT

Definition at line 27 of file mysqli_mysqlnd.h.

◆ MYSQLI_CLOSE_IMPLICIT

#define MYSQLI_CLOSE_IMPLICIT   MYSQLND_CLOSE_IMPLICIT

Definition at line 28 of file mysqli_mysqlnd.h.

◆ mysqli_free_result

#define mysqli_free_result ( r,
implicit )
Value:
mysqlnd_free_result((r), (implicit))
#define mysqlnd_free_result(r, e_or_i)
Definition mysqlnd.h:121

Definition at line 40 of file mysqli_mysqlnd.h.

◆ mysqli_result_is_unbuffered

#define mysqli_result_is_unbuffered ( r)
Value:
((r)->unbuf)

Definition at line 31 of file mysqli_mysqlnd.h.

◆ mysqli_result_is_unbuffered_and_not_everything_is_fetched

#define mysqli_result_is_unbuffered_and_not_everything_is_fetched ( r)
Value:
((r)->unbuf && !(r)->unbuf->eof_reached)

Definition at line 32 of file mysqli_mysqlnd.h.

◆ mysqli_server_status

#define mysqli_server_status ( c)
Value:
#define mysqlnd_get_server_status(conn)
Definition mysqlnd.h:143

Definition at line 33 of file mysqli_mysqlnd.h.

◆ mysqli_stmt_close

#define mysqli_stmt_close ( c,
implicit )
Value:
mysqlnd_stmt_close((c), (implicit))
#define mysqlnd_stmt_close(stmt, implicit)
Definition mysqlnd.h:236

Definition at line 39 of file mysqli_mysqlnd.h.

◆ mysqli_stmt_get_connection

#define mysqli_stmt_get_connection ( s)
Value:
(s)->data->conn
char s[4]
Definition cdf.c:77
zend_constant * data

Definition at line 37 of file mysqli_mysqlnd.h.

◆ mysqli_stmt_get_id

#define mysqli_stmt_get_id ( s)
Value:
((s)->data->stmt_id)

Definition at line 34 of file mysqli_mysqlnd.h.

◆ mysqli_stmt_server_status

#define mysqli_stmt_server_status ( s)
Value:
#define mysqlnd_stmt_server_status(stmt)
Definition mysqlnd.h:169

Definition at line 36 of file mysqli_mysqlnd.h.

◆ mysqli_stmt_warning_count

#define mysqli_stmt_warning_count ( s)
Value:
#define mysqlnd_stmt_warning_count(stmt)
Definition mysqlnd.h:168

Definition at line 35 of file mysqli_mysqlnd.h.