diff options
author | ComradeCrow <comradecrow@vivaldi.net> | 2023-05-17 23:25:10 -0700 |
---|---|---|
committer | ComradeCrow <comradecrow@vivaldi.net> | 2023-05-17 23:25:10 -0700 |
commit | dd9811703ad623e6b3ddc51e58ef5cc801f41951 (patch) | |
tree | 7c10fbd421919cbf2ff19fd3454445790102e6c1 /include | |
parent | 8b4fa2a3b6b1a3d75fd4ae5a61266e159d22e095 (diff) | |
download | ytcpp-dd9811703ad623e6b3ddc51e58ef5cc801f41951.tar.gz |
save to db is working
Diffstat (limited to 'include')
-rw-r--r-- | include/sqliteinterface.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sqliteinterface.hpp b/include/sqliteinterface.hpp index cc4adb4..5c7de4d 100644 --- a/include/sqliteinterface.hpp +++ b/include/sqliteinterface.hpp @@ -13,7 +13,7 @@ class SqliteInterface { void closeDB(); void createTables(); void saveVideo(const Video::video&); - void saveInstance(const std::string& uri, float health, const std::string& location); + void saveInstance(const char *uri, float health, const char *location); private: sqlite3* db; }; |