By Example:
Code: Select all
OraSession.ExecSQL('...', []);
OraSession.ApplyUpdates; //<-- Does not workCode: Select all
OraSession := TORASession.Create(nil);
with OraSession do
begin
Options.ConvertEOL := False;
Options.DateLanguage := 'German';
Options.DateFormat := 'DD.MM.YYYY HH24:MI:SS';
Options.Charset := FCharSet;
Server := FDataBase;
Username := FUsername;
Password := FPassword;
AutoCommit := True;
ThreadSafety := True;
Connected := True;
end;