25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
453 B

  1. #pragma once
  2. #include "base_context.h"
  3. namespace cpphibernate {
  4. namespace mariadb {
  5. /**
  6. * @brief Mariadb driver context for initializing the database.
  7. */
  8. struct init_context
  9. : public base_context
  10. {
  11. bool recreate;
  12. inline init_context(
  13. const schema_t& p_schema,
  14. ::cppmariadb::connection& p_connection,
  15. bool p_recreate);
  16. };
  17. } }