mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-21 15:03:49 +01:00
DBSQLite3: Do not raise in destructor
Throwing exception from destructor is not recommended and generates lots of warnings during compilation. Don't use macro SQLRES, and: - ignore return code of sqlite3_finalize (of no interest here) - log to stderr sqlite3_close failure
This commit is contained in:
parent
0bf0d8e035
commit
bcbfd00eba
@ -1,5 +1,6 @@
|
||||
#include <stdexcept>
|
||||
#include <unistd.h> // for usleep
|
||||
#include <iostream>
|
||||
#include "db-sqlite3.h"
|
||||
#include "types.h"
|
||||
|
||||
@ -31,11 +32,12 @@ DBSQLite3::DBSQLite3(const std::string &mapdir)
|
||||
|
||||
DBSQLite3::~DBSQLite3()
|
||||
{
|
||||
int result;
|
||||
SQLOK(finalize(stmt_get_blocks_z));
|
||||
SQLOK(finalize(stmt_get_block_pos));
|
||||
sqlite3_finalize(stmt_get_blocks_z);
|
||||
sqlite3_finalize(stmt_get_block_pos);
|
||||
|
||||
SQLOK(close(db));
|
||||
if (sqlite3_close(db) != SQLITE_OK) {
|
||||
std::cerr << "Error closing SQLite database." << std::endl;
|
||||
};
|
||||
}
|
||||
|
||||
std::vector<BlockPos> DBSQLite3::getBlockPos()
|
||||
|
Loading…
Reference in New Issue
Block a user