UniEncryptor and UniQuery paste to Form.
set up UniEncryptor.password
UniQuery.Encryption = pasted UniEncryptor
I practice to :
UniConnection1.Open;
wk_sql := 'INSERT INTO aaa (a1,a2,a3) VALUES(1,''a'',''abc'');';
with uniQuery1 do
begin
Encryption.Fields:='a3';
SQL.Clear;
SQL.Add(wk_sql);
Execute;
Close;
end;
UniConnection1.Close;
postgres aaa table a1:integer,a2:charactor varing,a3:text
But not encrypt to a3 field
hoq use UniQuery.Encryption ?
show me sample (both to insert,select)?