MySQL 9.2.0
Source Code Documentation
mysql_library.h File Reference

Go to the source code of this file.

Classes

struct  s_mysql_mysql_library
 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 mysql_service_mysql_library_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_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; library->get_body(library_handle, &body); ... use the body throughout the caller. library->deinit(library_handle);