Large request will result in large memory usage. DBSlayer is designed
for returning small results - less than 10k rows. - mostly in a web
based scenario. DBSlayer doesn't leak memory but like almost _all_
programs it doesn't returned the memory back to the operating system
until the program exits. It uses malloc alloc the memory but doesn't
call brk or sbrk to return memory back to the OS it calls free which
allows for the same . This is very standard behaviour across nearly
all applications.
d