Object Disposal

Hello,

Do we have to manually dispose of object instances, in particular, database’s?

Thanks!

Hi,

Xojo provides garbage collection: when an object is not reference anymore, it is deleted by the garbage collection. I tried to find a reference in the new documentation, but didn’t succeed :unamused:.

1 Like

Xojo uses ARC, not GC.

2 Likes

This article from the documentation should also help clear things up.

https://documentation.xojo.com/topics/debugging/how_xojo_manages_memory.html#how-xojo-manages-memory

1 Like

I stand corrected.