DbConnection.h 266 B

123456789101112
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. #ifdef URHO3D_DATABASE_ODBC
  5. #include "ODBC/ODBCConnection.h"
  6. #elif defined(URHO3D_DATABASE_SQLITE)
  7. #include "SQLite/SQLiteConnection.h"
  8. #else
  9. #error "Database subsystem not enabled"
  10. #endif