Rechercher dans le manuel MySQL
28.7.7 C API Function Descriptions
[+/-]
- 28.7.7.1 mysql_affected_rows()
- 28.7.7.2 mysql_autocommit()
- 28.7.7.3 mysql_change_user()
- 28.7.7.4 mysql_character_set_name()
- 28.7.7.5 mysql_close()
- 28.7.7.6 mysql_commit()
- 28.7.7.7 mysql_connect()
- 28.7.7.8 mysql_create_db()
- 28.7.7.9 mysql_data_seek()
- 28.7.7.10 mysql_debug()
- 28.7.7.11 mysql_drop_db()
- 28.7.7.12 mysql_dump_debug_info()
- 28.7.7.13 mysql_eof()
- 28.7.7.14 mysql_errno()
- 28.7.7.15 mysql_error()
- 28.7.7.16 mysql_escape_string()
- 28.7.7.17 mysql_fetch_field()
- 28.7.7.18 mysql_fetch_field_direct()
- 28.7.7.19 mysql_fetch_fields()
- 28.7.7.20 mysql_fetch_lengths()
- 28.7.7.21 mysql_fetch_row()
- 28.7.7.22 mysql_field_count()
- 28.7.7.23 mysql_field_seek()
- 28.7.7.24 mysql_field_tell()
- 28.7.7.25 mysql_free_result()
- 28.7.7.26 mysql_get_character_set_info()
- 28.7.7.27 mysql_get_client_info()
- 28.7.7.28 mysql_get_client_version()
- 28.7.7.29 mysql_get_host_info()
- 28.7.7.30 mysql_get_option()
- 28.7.7.31 mysql_get_proto_info()
- 28.7.7.32 mysql_get_server_info()
- 28.7.7.33 mysql_get_server_version()
- 28.7.7.34 mysql_get_ssl_cipher()
- 28.7.7.35 mysql_hex_string()
- 28.7.7.36 mysql_info()
- 28.7.7.37 mysql_init()
- 28.7.7.38 mysql_insert_id()
- 28.7.7.39 mysql_kill()
- 28.7.7.40 mysql_library_end()
- 28.7.7.41 mysql_library_init()
- 28.7.7.42 mysql_list_dbs()
- 28.7.7.43 mysql_list_fields()
- 28.7.7.44 mysql_list_processes()
- 28.7.7.45 mysql_list_tables()
- 28.7.7.46 mysql_more_results()
- 28.7.7.47 mysql_next_result()
- 28.7.7.48 mysql_num_fields()
- 28.7.7.49 mysql_num_rows()
- 28.7.7.50 mysql_options()
- 28.7.7.51 mysql_options4()
- 28.7.7.52 mysql_ping()
- 28.7.7.53 mysql_query()
- 28.7.7.54 mysql_real_connect()
- 28.7.7.55 mysql_real_escape_string()
- 28.7.7.56 mysql_real_escape_string_quote()
- 28.7.7.57 mysql_real_query()
- 28.7.7.58 mysql_refresh()
- 28.7.7.59 mysql_reload()
- 28.7.7.60 mysql_reset_connection()
- 28.7.7.61 mysql_reset_server_public_key()
- 28.7.7.62 mysql_result_metadata()
- 28.7.7.63 mysql_rollback()
- 28.7.7.64 mysql_row_seek()
- 28.7.7.65 mysql_row_tell()
- 28.7.7.66 mysql_select_db()
- 28.7.7.67 mysql_server_end()
- 28.7.7.68 mysql_server_init()
- 28.7.7.69 mysql_session_track_get_first()
- 28.7.7.70 mysql_session_track_get_next()
- 28.7.7.71 mysql_set_character_set()
- 28.7.7.72 mysql_set_local_infile_default()
- 28.7.7.73 mysql_set_local_infile_handler()
- 28.7.7.74 mysql_set_server_option()
- 28.7.7.75 mysql_shutdown()
- 28.7.7.76 mysql_sqlstate()
- 28.7.7.77 mysql_ssl_set()
- 28.7.7.78 mysql_stat()
- 28.7.7.79 mysql_store_result()
- 28.7.7.80 mysql_thread_id()
- 28.7.7.81 mysql_use_result()
- 28.7.7.82 mysql_warning_count()
This section describes C API functions other than those used for prepared statements, the asychronous interface, or the replication stream interface. For information about those, see Section 28.7.11, “C API Prepared Statement Function Descriptions”, Section 28.7.15, “C API Asynchronous Function Descriptions”, and Section 28.7.21, “C API Binary Log Function Descriptions”.
In the descriptions here, a parameter or return value of
NULL
means NULL
in the sense
of the C programming language, not a MySQL NULL
value.
Functions that return a value generally return a pointer or an
integer. Unless specified otherwise, functions returning a pointer
return a non-NULL
value to indicate success or
a NULL
value to indicate an error, and
functions returning an integer return zero to indicate success or
nonzero to indicate an error. Note that “nonzero”
means just that. Unless the function description says otherwise,
do not test against a value other than zero:
if (result) /* correct */
... error ...
if (result < 0) /* incorrect */
... error ...
if (result == -1) /* incorrect */
... error ...
When a function returns an error, the
Errors subsection of the function
description lists the possible types of errors. You can find out
which of these occurred by calling
mysql_errno()
. A string
representation of the error may be obtained by calling
mysql_error()
.
Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-c-api-functions.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.