With this code:
Query myQuery = pDatabase->query(); // a pointer to a connected connection object
myQuery <<"Select * from repdata"; // repdata is an existing table
myQuery.store();
I get an Debug Assertion Failed
in file dbgheap.c
line 1017
Expression: _BLOCK_TYPE_IS_INVALID(pHead->nBlockUse)
I have tried the exact statement in MySQL Administrator with out any errors.
The table has only 2 records and 3 fields.
Please help me fix the error.
Thanks
Query myQuery = pDatabase->query(); // a pointer to a connected connection object
myQuery <<"Select * from repdata"; // repdata is an existing table
myQuery.store();
I get an Debug Assertion Failed
in file dbgheap.c
line 1017
Expression: _BLOCK_TYPE_IS_INVALID(pHead->nBlockUse)
I have tried the exact statement in MySQL Administrator with out any errors.
The table has only 2 records and 3 fields.
Please help me fix the error.
Thanks