bool MySQLConnection::PrepareStatements() { DoPrepareStatements(); for (PreparedStatementMap::const_iterator itr = m_queries.begin(); itr != m_queries.end(); ++itr) PrepareStatement(itr->first, itr->second.first, itr->second.second); return !m_prepareError; }
bool MySQLConnection::PrepareStatements() { DoPrepareStatements(); return !m_prepareError; }