博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
21.8.3. C API Function Descriptions
阅读量:5933 次
发布时间:2019-06-19

本文共 3188 字,大约阅读时间需要 10 分钟。

[+/-]
21.8.3.1. mysql_affected_rows()
21.8.3.2. mysql_autocommit()
21.8.3.3. mysql_change_user()
21.8.3.4. mysql_character_set_name()
21.8.3.5. mysql_close()
21.8.3.6. mysql_commit()
21.8.3.7. mysql_connect()
21.8.3.8. mysql_create_db()
21.8.3.9. mysql_data_seek()
21.8.3.10. mysql_debug()
21.8.3.11. mysql_drop_db()
21.8.3.12. mysql_dump_debug_info()
21.8.3.13. mysql_eof()
21.8.3.14. mysql_errno()
21.8.3.15. mysql_error()
21.8.3.16. mysql_escape_string()
21.8.3.17. mysql_fetch_field()
21.8.3.18. mysql_fetch_field_direct()
21.8.3.19. mysql_fetch_fields()
21.8.3.20. mysql_fetch_lengths()
21.8.3.21. mysql_fetch_row()
21.8.3.22. mysql_field_count()
21.8.3.23. mysql_field_seek()
21.8.3.24. mysql_field_tell()
21.8.3.25. mysql_free_result()
21.8.3.26. mysql_get_character_set_info()
21.8.3.27. mysql_get_client_info()
21.8.3.28. mysql_get_client_version()
21.8.3.29. mysql_get_host_info()
21.8.3.30. mysql_get_proto_info()
21.8.3.31. mysql_get_server_info()
21.8.3.32. mysql_get_server_version()
21.8.3.33. mysql_get_ssl_cipher()
21.8.3.34. mysql_hex_string()
21.8.3.35. mysql_info()
21.8.3.36. mysql_init()
21.8.3.37. mysql_insert_id()
21.8.3.38. mysql_kill()
21.8.3.39. mysql_library_end()
21.8.3.40. mysql_library_init()
21.8.3.41. mysql_list_dbs()
21.8.3.42. mysql_list_fields()
21.8.3.43. mysql_list_processes()
21.8.3.44. mysql_list_tables()
21.8.3.45. mysql_more_results()
21.8.3.46. mysql_next_result()
21.8.3.47. mysql_num_fields()
21.8.3.48. mysql_num_rows()
21.8.3.49. mysql_options()
21.8.3.50. mysql_ping()
21.8.3.51. mysql_query()
21.8.3.52. mysql_real_connect()
21.8.3.53. mysql_real_escape_string()
21.8.3.54. mysql_real_query()
21.8.3.55. mysql_refresh()
21.8.3.56. mysql_reload()
21.8.3.57. mysql_rollback()
21.8.3.58. mysql_row_seek()
21.8.3.59. mysql_row_tell()
21.8.3.60. mysql_select_db()
21.8.3.61. mysql_set_character_set()
21.8.3.62. mysql_set_local_infile_default()
21.8.3.63. mysql_set_local_infile_handler()
21.8.3.64. mysql_set_server_option()
21.8.3.65. mysql_shutdown()
21.8.3.66. mysql_sqlstate()
21.8.3.67. mysql_ssl_set()
21.8.3.68. mysql_stat()
21.8.3.69. mysql_store_result()
21.8.3.70. mysql_thread_id()
21.8.3.71. mysql_use_result()
21.8.3.72. mysql_warning_count()
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().

转载地址:http://ddctx.baihongyu.com/

你可能感兴趣的文章
(转)淘淘商城系列——dubbo监控中心
查看>>
Lambert漫反射的BRDF
查看>>
HDU 1720 A+B Coming
查看>>
跑rbgirshick的fast-rcnn代码
查看>>
自定义控件_StickyNavLaout
查看>>
[转]从客户端中检测到有潜在危险的Request.Form值的详细解决
查看>>
微信小程序之分享,动态添加分享数据
查看>>
JavaScript--语法3--数组
查看>>
Javascript 方法apply和call的差别
查看>>
BZOJ 2818 Gcd (莫比乌斯反演 或 欧拉函数)
查看>>
MySQL获取Schema表名和字段信息
查看>>
HLJU 1223: 寻找区间和 (交替推进法)
查看>>
一个技术派创业者的反思
查看>>
RAID总结
查看>>
linux设置允许和禁止访问的IP host.allow 和 host.deny
查看>>
如何下载旧版本的MySQL
查看>>
同一台机子 打开两个tomcat
查看>>
HBuilder开发App教程05-滴石和websql
查看>>
Swift - 各种手势检测大全(UIGestureRecognizer及其子类)
查看>>
安卓代码混淆与反射冲突,地图无法显示等问题解决及反编译方法
查看>>