Carlo Sirna
Carlo Sirna
File sharing policy must be passed in the SECOND parameter of TFileStream.Create, OR-ed with the open mode flags. the "Rights" parameter (the third) is meant for the "rwxrwxrwx" protection bits...
DynArraySetLength expects a poiner to a Nativeint variable, which is 8 bytes when compiling for 64 bits, but code was passing a pointer to a 32 bit integer. this caused...
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...
I am trying to use Downloader in a NET7 app targeting android to download a file from a server using a self signed certificate. everything is fine if I try...
If you are running a transaction with RunInTransactionAsync(), other tasks are still free to execute write commands while your transaction is still running and hasn't committed yet its work. For...
Hi, I anticipated I was implementing this in Issue #1174 (this code contains also the small fix I proposed in pull request #1175 ) This modification extends SQLiteConnection and SQLiteAsyncConnection...
This is the idea: while this query is running in a task: ```csharp connection.Table() .CancelToken (tok) .ToList(); ``` I want another "control task" to be able to abort that query...