MySQL 9.4.0
Source Code Documentation
mysql_library_ext.h File Reference

Go to the source code of this file.

Classes

struct  s_mysql_mysql_library_ext
 Services for reading the properties of the Libraries that are imported by the routines. More...
 

Typedefs

typedef struct my_h_library_imp * my_h_library
 
typedef struct s_mysql_mysql_library_ext mysql_service_mysql_library_ext_t
 Services for reading the properties of the Libraries that are imported by the routines. More...
 

Typedef Documentation

◆ my_h_library

typedef struct my_h_library_imp* my_h_library

◆ mysql_service_mysql_library_ext_t

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);