Vector<String> MySqlSession::EnumTables(String database) { Vector<String> out; Sql cursor(*this); if(cursor.Execute("show tables from " + database)) out = FetchList(cursor, false); //<< Here is the change return out; }
Report message to a moderator