Ich hatte ein ähnliches Problem, das Programm würde eine Speicherausnahme geben. Folgendes habe ich getan, um es zu beheben:
std::string version = result->getString( COLUMN_NAME ).c_str();
Das hat nicht funktioniert:
sql::SQLString sString = result->getString( COLUMN_NAME ); <<<memory exception
std::string version = sString;