Glib-Error MYSQL?
I got this Error when querying MYSQL Database:
Glib-Error **: gmem.c:173:falied to allocate 216000000 bytes aborting..
开发者_StackOverflow中文版
Do anybody have some explanations?
I am using MYSQL Query Browser.
thanks
It sounds like you are trying to run a SELECT
query that is way too big to fit in the memory available on your computer. Try adding a LIMIT
clause.
精彩评论