You are not logged in.
Pages: 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 :
How unlock base ?
db.Free;
Does not help
I need to write function for decrypt string. i dont find example.
help me
Pages: 1