"java.lang.OutOfMemoryError: java heap space"

What does this mean? I'm using a JFrame, and this is in another class which accesses the MSAccess db. The error particularly occurs on the insertRow() method! Please help me sort this. If you need the code then tell me..... thanks
[238 byte] By [prakharbirlaa] at [2007-11-26 19:10:08]
# 1
It means what it says. You are out of memory. So find out what in your program is using all that memory. Collections that accumulate data indefinitely are potential candidates. You could use a profiler if you can't tell by looking at your code.
DrClapa at 2007-7-9 21:05:47 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
Yes, I figured that out too, but I sill havent been ale to figure out that what excatly is causing the error.And I really dont know what a profiler is so please help me with that too! Thanks.
prakharbirlaa at 2007-7-9 21:05:47 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3

> Yes, I figured that out too, but I sill havent been

> ale to figure out that what excatly is causing the

> error.

>

> And I really dont know what a profiler is so please

> help me with that too! Thanks.

When you run app , setting your heap/mem based on

spec pc/app

for example setting initial and max heap size , 64/128m

java -ms64m -mx128m yourapp

p_epia at 2007-7-9 21:05:47 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...