![]() |
MySQL 9.4.0
Source Code Documentation
|
Services for reading the properties of the Libraries that are imported by the routines. More...
#include <mysql_library_ext.h>
Public Attributes | |
mysql_service_status_t(* | get_body )(my_h_library library_handle, mysql_cstring_with_length *body, bool *is_binary) |
Get library's body. More... | |
Services for reading the properties of the Libraries that are imported by the routines.
How to use: my_h_library library_handle; library->init(nullptr, schema, name, version, &library_handle); mysql_cstring_with_length body; bool is_binary; library_ext->get_body(library_handle, &is_binary); ... use the body throughout the caller. library->deinit(library_handle);
mysql_service_status_t(* s_mysql_mysql_library_ext::get_body) (my_h_library library_handle, mysql_cstring_with_length *body, bool *is_binary) |
Get library's body.
[in] | library_handle | Handle to library. |
[out] | body | Library's body. |
[out] | is_binary | Is the library body stored with a binary character set? |
false | Success. |
true | Failure. |