0

亲爱的 StackOverflow'ers,

我一直在使用 C++ 进行编码,并且我参加了一个项目,我将 4D SQL 数据库中的信息读取到 MySQL 语法 .sql 文件中,这些文件又由 MySQL 服务器执行。我遇到了以下问题;如果我用一张表运行 CreateSQL 函数然后退出程序,它运行良好。

如果我循环 CreateSQL 函数以从所有表创建 SQL,它会失败并出现 std::bad_alloc 错误。

由于我对 C++ 很陌生,我希望如果一些更有经验的 C++ 程序员可以指出我可能会发生此错误的方向。我的(没有经验的)猜测是不正确地释放变量或释放时间,如下所示:

SQLFreeHandle( SQL_HANDLE_STMT, hStmt ) ;
SQLFreeHandle( SQL_HANDLE_DBC, hConn ) ;
SQLFreeHandle( SQL_HANDLE_ENV, hEnv ) ;

任何帮助将不胜感激。

完整的源代码如下:

源代码

编辑:根据评论中弗朗索瓦的建议:

for( int i = 1 ; i <= numRows ; i++ )
{
// Datatypes
// SQLGetData

char buf[256];
SQLINTEGER numBytes ;
newFile << createInsert(table);
for( int j = 1 ;
  j <= numCols ;
  j++ )
{

  retCode = SQLGetData(

    hStmt,
    j,           // COLUMN NUMBER of the data to get
    SQL_C_CHAR,  // the data type that you expect to receive
    buf,         // the place to put the data that you expect to receive
    255,         // the size in bytes of buf (-1 for null terminator)
    &numBytes    // size in bytes of data returned

  ) ;

    if( CHECK( retCode, "SqlGetData", false ) )
    {
        retCode2 = SQLDescribeColA( hStmt, j, colName, 255, &colNameLen, &dataType, &columnSize, &numDecimalDigits, &allowsNullValues ) ;
        if( CHECK( retCode2, "SQLDescribeCol" ) )
        {
            //cout << dataType << endl;
            if(dataType != 91) {
                newFile << "'" << removeSlashes(removeSpecials(buf)) << "'";
            }
            else if (dataType == 91) {
                newFile << "date_format(str_to_date('" << fixDate(buf) << "', '%d-%m-%Y'),'%Y-%m-%d')";
            }
        }
    //Sleep(50);
    }
    if(j != numCols) {
        newFile << ",";
    }

}
newFile << ");\n";
cout << "Regel #" << i <<  " van tabel " << table << " is verwerkt." << endl;

retCode = SQLFetch( hStmt ) ;
if( !SQL_SUCCEEDED( retCode ) )
{
  cout << "Tabel "+table+" is verwerkt." << endl;
  printf( "Regel %d is de laatste regel.\n", i ) ;
}
}
4

1 回答 1

0

std::bad_allocnew当它无法分配内存时抛出,通常是因为内存耗尽,这通常表明程序中某处存在内存泄漏。

您的功能createInsertcreateSelect都被您没有的动态分配所困扰delete

char * array = new char[array_size];

与其像这样动态分配,您应该使用std::stringoperator>>从中提取ifstream并避开任何动态分配,总有比手动分配更好的方法。


旁注,while(!file.eof())总是不好。

于 2017-06-27T13:59:06.367 回答