Esempio n. 1
0
void Persistent::prepareUpdate(Updates& updates, LITESQL_String table) {
    if (updates.find(table) == updates.end()) {
        updates[table] = std::vector<std::pair<FieldType, LITESQL_String> >();
    }
}
Esempio n. 2
0
void Persistent::prepareUpdate(Updates& updates, const string& table) {
    if (updates.find(table) == updates.end()) {
        updates[table] = vector<pair<FieldType, string> >();
    }
}