80
83
for (std::vector<std::string>::const_iterator it= table_names.begin(); it != table_names.end(); ++it)
82
85
std::string tableName= *it;
83
89
query="SELECT TABLE_NAME, TABLE_COLLATION, ENGINE, AUTO_INCREMENT FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA='";
84
90
query.append(databaseName);
85
91
query.append("' AND TABLE_NAME = '");