Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reference counted ISQLiteConnection and ISQLiteStatement #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

csm101
Copy link

@csm101 csm101 commented Apr 6, 2023

These interfaces are functionally equivalent to TSQLiteConnection and TSQLiteStatement, but their instances do not need to be explicitly deallocated when their reference count goes to zero.

I mean: this code is not leaking any memory.

begin 
   var conn := TSQLite.Connect(':memory:',saReadWrite);
   var stmt := conn.Prepare('select ..... ');
   while stmt.read do begin
      ...
   end;
end; 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants