Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

27 рядки
606 B

  1. #pragma once
  2. #include <cppmariadb.h>
  3. namespace cpphibernate {
  4. namespace mariadb {
  5. struct schema_t;
  6. /**
  7. * @brief Base class for all mariadb driver context classes.
  8. */
  9. struct base_context
  10. {
  11. const schema_t& schema; //!< schema to use for the operation
  12. ::cppmariadb::connection& connection; //!< mariadb connection to use for executing queries
  13. /**
  14. * @brief Constructor.
  15. */
  16. inline base_context(
  17. const schema_t& p_schema,
  18. ::cppmariadb::connection& p_connection);
  19. };
  20. } }