





















































Delphi 10.2 community is amazing! The best version of Delphi I tried... For example, with the included FireDac drivers you need just 5 lines of code to programmatically create a SQLite db crypted with AES 256: FDConnection1.Params.Clear; FDConnection1.Params.DriverID := 'SQLite'; FDConnection1.Params.Database := StrBaseFolder + '\' + StrFileName; FDConnection1.Params.NewPassword := 'aes-256:' + SPass; FDConnection1.Connected := True;