Make changes to certain database functions and a debug assert (#804)

- Replace all interaction of std::string and sqlString.
- Add a return before a debug assertion can be triggered by lvl chunks being loaded on server start.
This commit is contained in:
Jett
2022-11-03 03:53:45 +00:00
committed by GitHub
parent 8edade5f98
commit b974eed8f5
3 changed files with 9 additions and 9 deletions

View File

@@ -35,8 +35,8 @@ void Database::Connect(const string& host, const string& database, const string&
}
void Database::Connect() {
con = driver->connect(Database::props);
con->setSchema(Database::database);
con = driver->connect(Database::props["hostName"].c_str(), Database::props["user"].c_str(), Database::props["password"].c_str());
con->setSchema(Database::database.c_str());
}
void Database::Destroy(std::string source, bool log) {