You are not logged in.
Pages: 1
Hi,
Two places need to be fixed:
1. TSQLDBConnectionProperties.ColumnTypeNativeToDB (SynDB.pas)
begin
case DBMS of
dOracle: ColumnTypeNativeToDBOracle; <-- should be "result := ColumnTypeNativeToDBOracle"
.....
end;
2. TSQLASource, TSQLADest (SynTests)
property SignatureTime; <-- should be "property SignatureTime: TTimeLog read fSignatureTime write fSignatureTime;
property Signature; <-- should be "property Signature: RawUTF8 read fSignature write fSignature;
Offline
1. It is already there.
Check https://github.com/synopse/mORMot/blob/ … .pas#L5604
2. The getter/setter are defined in TSQLRecordSigned.
No need to add them.
So I don't understand what you mean.
Ensure you have the correct source code - latest revision.
Offline
Oops, seems I was late for latest commit. The problem is solved. Thanks.
Offline
@ab, are you making changes on 2.0 version of mORMot too?
Offline
Pages: 1