#1 Delphi » SQLDBConnectionProperties locks the file » 2021-08-01 12:12:06

racosa
Replies: 1
var
   db: TSQLDBConnectionProperties;
   rows: ISQLDBRows;
begin
db := TSQLDBSQLite3ConnectionProperties.Create( 'Base.sql', '', '', '');

  rows := db.ExecuteInlined('SELECT * FROM info', true);

 if rows<>nil then

    begin

      while rows.Step do

        begin

         Writeln( rows.ColumnString('url') );

        end;
    end;

 TFile.Delete( 'Base.sql' ); // error
end;

When I try to delete the "Base.sql", I get the error :

ScreenShot
ScreenShot2

How unlock base ?

db.Free;

Does not help

#2 Delphi » How decrypt string using aes-256-gmc mode ? » 2020-12-30 23:21:27

racosa
Replies: 1

I need to write function for decrypt string. i dont find example.
help me

Board footer

Powered by FluxBB