Kitzunu
2021-01-10 14:27:55 +01:00
committed by GitHub
parent 7cf097eab2
commit da4edd547d
315 changed files with 3 additions and 729 deletions

View File

@@ -216,7 +216,6 @@ public:
}
private:
void Enqueue(SQLOperation* op)
{
_queue->enqueue(op);

View File

@@ -18,7 +18,6 @@ class Field
friend class PreparedResultSet;
public:
[[nodiscard]] bool GetBool() const // Wrapper, actually gets integer
{
return (GetUInt8() == 1);
@@ -224,7 +223,6 @@ public:
}
#endif
return static_cast<char const*>(data.value);
}
[[nodiscard]] std::string GetString() const

View File

@@ -307,7 +307,6 @@ bool MySQLConnection::_Query(PreparedStatement* stmt, MYSQL_RES** pResult, uint6
*pFieldCount = mysql_stmt_field_count(msql_STMT);
return true;
}
}

View File

@@ -40,7 +40,6 @@ public:
SQLQueryHolderTask(SQLQueryHolder* holder, QueryResultHolderFuture res)
: m_holder(holder), m_result(res) { };
bool Execute() override;
};
#endif
#endif

View File

@@ -93,7 +93,6 @@ private:
void FreeBindBuffer();
void CleanUp();
bool _NextRow();
};
typedef std::shared_ptr<PreparedResultSet> PreparedQueryResult;