Advertisement
Zgragselus

Sqlite.h

Jan 31st, 2025
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.06 KB | None | 0 0
  1. ///////////////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Sqlite.h
  4. //
  5. // Implements integration with SQLite3 database. Dynamically loads the library. Example integration
  6. // is in Database.h/Database.cpp file.
  7. //
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9.  
  10. #ifndef __SQLITE_H__
  11. #define __SQLITE_H__
  12.  
  13. ///////////////////////////////////////////////////////////////////////////////////////////////////
  14. // Header section
  15.  
  16. #include <functional>
  17. #include "Core/Plugin/Plugin.h"
  18. #include "Core/Log/Log.h"
  19.  
  20. ///////////////////////////////////////////////////////////////////////////////////////////////////
  21. // Class & Structures definition
  22.  
  23. namespace Engine
  24. {
  25.     /// <summary>
  26.     /// Sqlite class
  27.     ///
  28.     /// Integrates with SQLite3 database.
  29.     /// </summary>
  30.     class Sqlite
  31.     {
  32.     private:
  33.         /// <summary>Pointer to log</summary>
  34.         Log* mLog;
  35.  
  36.         /// <summary>Pointer to plugin module (work with dynamic libraries)</summary>
  37.         Plugin* mPlugin;
  38.  
  39.         /// <summary>Sqlite db handle</summary>
  40.         void* mHandle;
  41.  
  42.         /// <summary>
  43.         /// Opens database connection to SQLite3 file
  44.         /// </summary>
  45.         /// <param name="filename">Database filename</param>
  46.         /// <param name="ppDb">SQLite db handle</param>
  47.         /// <returns>0 on success, non-0 otherwise (see Sqlite error codes)</returns>
  48.         int (*sqlite3_open)(const char* filename, void** ppDb);
  49.  
  50.         /// <summary>
  51.         /// Close database connection
  52.         /// </summary>
  53.         /// <param name="ppDb">SQLite db handle</param>
  54.         /// <returns>0 on success, non-0 otherwise (see Sqlite error codes)</returns>
  55.         int (*sqlite3_close)(void* ppDb);
  56.  
  57.         /// <summary>
  58.         /// Execute SQL query
  59.         ///
  60.         /// Note: Callback function is called for each row in the result set, its parameters are:
  61.         /// - User data passed in as 3rd argument to sqlite3_exec
  62.         /// - Number of columns in the result set
  63.         /// - Array of strings representing fields in the current row
  64.         /// - Array of strings representing column names
  65.         /// </summary>
  66.         /// <param name="ppDb">SQLite db handle</param>
  67.         /// <param name="sql">SQL query</param>
  68.         /// <param name="callback">Callback function</param>
  69.         /// <param name="userdata">User data</param>
  70.         /// <param name="errmsg">Error message</param>
  71.         int (*sqlite3_exec)(void* ppDb, const char* sql, int(*callback)(void*, int, char**, char**), void* userdata, char** errmsg);
  72.  
  73.         /// <summary>
  74.         /// Return english-language text describing the most recent db error
  75.         /// </summary>
  76.         /// <param name="ppDb">SQLite db handle</param>
  77.         /// <returns>Error message</returns>
  78.         char* (*sqlite3_errmsg)(void* ppDb);
  79.  
  80.     public:
  81.         /// <summary>
  82.         /// Default constructor
  83.         ///
  84.         /// Opens sqlite3.dll and loads its functions
  85.         /// </summary>
  86.         /// <param name="log">Logging system</param>
  87.         Sqlite(Log* log);
  88.  
  89.         /// <summary>
  90.         /// Default destructor
  91.         /// </summary>
  92.         ~Sqlite();
  93.  
  94.         /// <summary>
  95.         /// Open database connection
  96.         /// </summary>
  97.         /// <param name="filename">File with sqlite database</param>
  98.         /// <returns>True when connection is successful, false otherwise</returns>
  99.         bool Open(const std::string& filename);
  100.  
  101.         /// <summary>
  102.         /// Close database connection
  103.         /// </summary>
  104.         void Close();
  105.  
  106.         /// <summary>
  107.         /// Perform database query
  108.         ///
  109.         /// Note: Callback function is called for each row in the result set, its parameters are:
  110.         /// - User data passed in as last argument to Query
  111.         /// - Number of columns in the result set
  112.         /// - Array of strings representing fields in the current row
  113.         /// - Array of strings representing column names
  114.         /// </summary>
  115.         /// <param name="query">SQL query</param>
  116.         /// <param name="callback">Callback for each processed row</param>
  117.         /// <param name="userdata">Pointer to used data sent into callback function as 1st argument</param>
  118.         void Query(const std::string& query, int(*callback)(void*, int, char**, char**), void* userdata);
  119.     };
  120. }
  121.  
  122. ///////////////////////////////////////////////////////////////////////////////////////////////////
  123. // EOH
  124.  
  125. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement