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;
}
Ejemplo n.º 2
0
bool MySQLConnection::PrepareStatements()
{
    DoPrepareStatements();
    return !m_prepareError;
}