Overload assignment operator for assigning sql::ResultSet to struct tm
- by Luke Mcneice
Are there exceptions for types which can't have thier assignment operator overloaded?
Specifically, I'm wanting to overload the assignment operator of a struct tm (from time.h) so I can assign a sql::ResultSet to it.
I already have the conversion logic:
sscanf(sqlresult->getString("StoredAt").c_str(), "%d-%d-%d %d:%d:%d",
…